@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Red Hat Display", sans-serif;
  margin: 2rem 3rem;
  font-size: 1rem;
}

img {
  max-width: 100%;
}

header {
  text-align: center;
}

.section-1 img {
  display: none;
}

.section-1 {
  text-align: center;
}

.text h1 {
  margin-top: 1rem;
}

.text p {
  margin-top: 1rem;
}

.section-1 .butt-1 {
  background-color: #4a8ea5;
  color: #ffffff;
  padding: 0.3rem 1.5rem;
  border: none;
  border-radius: 1rem;
  margin-top: 1rem;
  margin-right: 0.5rem;
}

.section-1 .butt-2 {
  background-color: #8965b2;
  color: #ffffff;
  padding: 0.3rem 1rem;
  border: none;
  border-radius: 1rem;
  margin-top: 1rem;
}

.section-2 {
  margin-top: 4rem;
}

.section-2 img {
  margin-top: 1rem;
  border-radius: 2rem;
  padding: 0 3rem;
}

.section-3 {
  text-align: center;
  margin-top: 3rem;
}

.section-3 h4 {
  text-transform: uppercase;
  color: #4a8ea5;
  margin-bottom: 0.5rem;
}

.section-3 p {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .section-1 img {
    display: block;
  }

  .section-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .section-2 {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .section-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .section-3 {
    text-align: center;
  }
}

@media (min-width: 1200px) {
}
