@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca&display=swap");

body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.container {
  display: flex;
}

.section {
  margin: 0;
  line-height: 25px;
  padding: 60px;
  border-radius: 3px;
}

p {
  color: hsla(0, 0%, 100%, 0.75);
  font-family: "Lexend Deca", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-size: 15px;
}

h1 {
  color: hsla(0, 0%, 100%, 0.75);
  font-family: "Big Shoulders Display", cursive;
  font-weight: 700;
}

a {
  text-decoration: none;
}

.first {
  background-color: hsl(31, 77%, 52%);
}

.one {
  color: hsl(31, 77%, 52%);
}

.second {
  background-color: hsl(184, 100%, 22%);
}
.two {
  color: hsl(184, 100%, 22%);
}

.third {
  background-color: hsl(179, 100%, 13%);
}

.three {
  color: hsl(179, 100%, 13%);
}

.btn {
  border: 2px solid hsla(0, 0%, 100%, 0.75);
  border-radius: 50px;
  text-align: center;
  padding: 8px;
  margin-top: 55px;
  width: 57%;
  display: inline-block;
  cursor: pointer;
  font-family: "Lexend Deca", sans-serif;
  font-weight: 400;
  font-size: 15px;
  background-color: hsla(0, 0%, 100%, 0.75);
}

.btn:hover {
  background-color: transparent;
  color: hsla(0, 0%, 100%, 0.75);
}

.attribution {
  margin-top: 50px;
  font-family: "Lexend Deca", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-size: 15px;
}

@media (max-width: 760px) {
  body {
    height: auto;
  }
  .container {
    flex-direction: column;
  }
}
