* {
  color: #455A64;
  font-family: 'Avenir Next', Arial, Helvetica, sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);

  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header img {
  max-height: 32px;
}

body main:first-of-type {
  margin-top: 3rem;
}
#home {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-image: url(../images/background.jpg), linear-gradient(#304d25 50%, #2c4323 100%);
  background-size: cover;
}
#home p {
  color: #C5E1A5;
}

#comojogar {
  min-height: 100vh;
  background: linear-gradient(#F0F0F0 50%, #FFFFFF 100%);
}

.container {
  max-width: 990px;
  margin: 0 auto;
  padding: 1.5rem 0.5rem;
}

hr {
  border: none;
  border-top: 8px solid rgba(38, 50, 56, 0.25);
  width: 80px;
  border-radius: 99px;
  margin: 0.25rem 0;
  margin-bottom: 1rem;
}
p {
  margin-bottom: 0.75rem;
}
a {
  text-decoration: none;
}

.text-center {
  text-align: center;
}
.caption {
  font-size: 0.725rem;
}
.opacity {
  opacity: .75;
}
.subtitle {
  margin-top: 1.5rem;
}
.m-auto {
  margin: 0 auto;
}
.text-image {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.flex-column {
  flex-direction: column;
}
.max-720 {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.cta-container {
  margin: 2rem 0;
}
.CTA {
  background-color: #81c13a;
  border: none;
  padding: 0.5rem 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 0.25rem;
  color: #FFFFFF;
  cursor: pointer;
  transition: filter 0.5s ease;
}
.CTA:hover {
  filter: brightness(1.1);
}
.CTA span {
  color: #FFFFFF;
}

.white--text {
  color: #FFFFFF !important;
}
.link--text {
  color: #81c13a !important;
  font-weight: 600;
}

.steps {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.steps div {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 1rem;
  border-radius: 0.5rem;
}
.steps div section {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
}
.steps div section img {
  max-height: 400px;
}
.steps span {
  /* color: #FFFFFF; */
  font-size: 4rem;
  font-family: 'Caveat', cursive;
  line-height: 1;
}
.steps div .CTA {
  width: 100%;
}
.box {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(38, 50, 56, 0.15);
  border-radius: 0.5rem;
  padding: 1rem;
  width: fit-content;
}
.box p {
  margin: 0;
}

@media screen and (max-width: 768px) {
  header {
    padding: 0.5rem;
  }
  header img {
    height: 24px;
  }

  .hiddenSmDown {
    display: none;
  }
  .steps,
  .steps div section,
  .text-image {
    flex-direction: column;
  }
  .steps div section img {
    max-height: unset;
    width: 100%;
  }
  .CTA {
    width: 100%;
  }
}