@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders:opsz,wght@10..72,100..900&family=Lexend+Deca:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Lexend Deca", sans-serif;
  background-color: hsl(0, 0%, 95%);
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

main {
  flex: 1;
  color: hsla(0, 0%, 100%, 0.75);
  padding: 4rem 2rem;
}
@media (min-width: 768px) {
  main {
    padding: 4rem;
  }
}
@media (min-width: 1024px) {
  main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 80rem;
  }
}
main > div {
  padding: 3rem;
}
@media (min-width: 1024px) {
  main > div {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
  }
}
main > div:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}
@media (min-width: 1024px) {
  main > div:first-child {
    border-radius: 0.5rem 0 0 0.5rem;
  }
}
main > div:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
}
@media (min-width: 1024px) {
  main > div:last-child {
    border-radius: 0 0.5rem 0.5rem 0;
  }
}

h2 {
  font-family: "Big Shoulders", sans-serif;
  color: hsl(0, 0%, 95%);
  font-size: 2.8rem;
  font-weight: 500;
  margin: 2rem 0;
}

p {
  font-size: clamp(1.1rem, 1vw + 0.3rem, 1.4rem);
  font-weight: 300;
  line-height: 1.5;
  margin: 1rem 0;
}

footer {
  margin-top: auto;
  padding: 1rem;
}

a.button {
  background-color: hsl(0, 0%, 95%);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-block;
  text-decoration: none;
  margin: 1rem 0;
  font-size: 1.2rem;
  font-weight: 400;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
a.button:hover, a.button:focus, a.button:active {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.gold {
  background-color: hsl(31, 77%, 52%);
}
.gold a.button {
  color: hsl(31, 77%, 52%);
}
.gold a.button:hover, .gold a.button:focus, .gold a.button:active {
  color: white;
}

.cyan {
  background-color: hsl(184, 100%, 22%);
}
.cyan a.button {
  color: hsl(184, 100%, 22%);
}
.cyan a.button:hover, .cyan a.button:focus, .cyan a.button:active {
  color: white;
}

.green {
  background-color: hsl(179, 100%, 13%);
}
.green a.button {
  color: hsl(179, 100%, 13%);
}
.green a.button:hover, .green a.button:focus, .green a.button:active {
  color: white;
}/*# sourceMappingURL=styles.css.map */