@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@100..900&family=Lexend+Deca:wght@100..900&display=swap");

:root {
  /* Primary */

  --Bright-orange: hsl(31, 77%, 52%);
  --Dark-cyan: hsl(184, 100%, 22%);
  --Very-dark-cyan: hsl(179, 100%, 13%);

  /* Neutral */
  /* (paragraphs) */
  --Transparent-white: hsla(0, 0%, 100%, 0.75);
  /* (background, headings, buttons) */
  --Very-light-gray: hsl(0, 0%, 95%);
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 15px;
}

body {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  color: white;
  font-family: "Lexend Deca", serif;
}
h2 {
  font-family: "Big Shoulders Display", serif;
}
button {
  padding: 1rem 2rem;
  /* background-color: var(--Transparent-white); */
  color: var(--Transparent-white);
  border: none;
  align-self: flex-start;
  border-radius: 120px;
}
.card {
  background-color: antiquewhite;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.card1 {
  background-color: var(--Bright-orange);
}
.card2 {
  background-color: var(--Dark-cyan);
}
.card2 button {
  color: var(--Dark-cyan);
}
.card3 {
  background-color: var(--Very-dark-cyan);
}
.card3 button {
  color: var(--Very-dark-cyan);
}
.card1 button {
  color: var(--Bright-orange);
}
img {
  /* flex: 1; */
  align-self: flex-start;
}
.container {
  display: flex;
  flex-direction: column;
}
p {
  line-height: 1.5;
  font-size: 1rem;
}
@media (min-width: 450px) {
  .container {
    flex-direction: row;
    width: 800px;
  }
  button {
    margin-top: 3rem;
  }
  h2 {
    font-size: 2rem;
  }
}
