/* ### Primary



### Neutral


 */

:root {
  --primary-Bright-orange: hsl(31, 77%, 52%);
  --primary-Dark-cyan: hsl(184, 100%, 22%);
  --primary-Very-dark-cyan: hsl(179, 100%, 13%);
  --neatral-white-paragraphs: hsla(0, 0%, 100%, 0.75);
  --neatral-light-gray: hsl(0, 0%, 95%);
}

/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

body,
#root,
main {
  background-color: var(--neatral-light-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
  /* width: 50%; */
  margin: 0 auto;
  max-width: 80%;
}

/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/*
    9. Create a root stacking context
  */
#root,
#__next {
  isolation: isolate;
}

main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* align-self: center; */
  align-items: center;
  height: 100vh;
  /* width: 50%; */
  /* margin-inline: auto; */
  /* max-height: 80%; */
}
section {
  line-height: 1.3;
  padding-left: 2em;
}

.col {
  display: flex;
  flex-direction: column;
  padding: 5em 0 5em 0;
  gap: 2rem;
}
section > img {
  width: 2.5rem;
  height: 2.5rem;
}

main > section:nth-child(1) {
  background-color: var(--primary-Bright-orange);
  border-radius: 10px 0 0 10px;
}
main > section:nth-child(2) {
  background-color: var(--primary-Dark-cyan);
}
main > section:nth-child(3) {
  background-color: var(--primary-Very-dark-cyan);
  border-radius: 0 10px 10px 0;
}

.content {
  color: var(--neatral-light-gray);
  padding-left: 2em;
}
/* - Family: [Lexend Deca](https://fonts.google.com/specimen/Lexend+Deca)
- Weights: 400

- Family: [Big Shoulders Display](https://fonts.google.com/specimen/Big+Shoulders+Display)
- Weights: 700 */
.content > h1 {
  font-size: 2rem;
  font-family: "Big Shoulders Display";
  text-transform: uppercase;
}

.content > p {
  font-size: 0.8rem;
  font-weight: 200;
  font-family: "Lexend Deca";
  color: var(--neatral-white-paragraphs);
  padding-bottom: 2em;
}

button {
  margin-top: 2em;
  width: 70%;
  height: 40%;
  border-radius: 3rem;
  padding: 0.7em 0.7em;
}

main > section:nth-child(1) button {
  background-color: var(--neatral-light-gray);
  color: var(--primary-Bright-orange);
  border: 2px solid var(--primary-Bright-orange);
}
main > section:nth-child(2) button {
  background-color: var(--neatral-light-gray);
  color: var(--primary-Dark-cyan);
  border: 2px solid var(--primary-Dark-cyan);
}
main > section:nth-child(3) button {
  background-color: var(--neatral-light-gray);
  color: var(--primary-Very-dark-cyan);
  border: 2px solid var(--primary-Very-dark-cyan);
}
