/* #region Cover */
#cover {
  height: 600px;
  background-image: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 1)
    ),
    url("/assets/images/bg1.webp");
  background-size: cover;
  background-position: center center;
  background-blend-mode: darken;
  color: white;
  overflow: hidden;
}

#cover .content {
  height: 100%;
}
#cover .space {
  height: 64px;
}
#cover .content h1.title {
  font-family: "Finger Paint", "Quicksand", sans-serif;
  font-size: 9rem;
  margin-bottom: 1rem;

  text-shadow: -2px -2px 4px white, 2px -2px 4px white, -2px 2px 4px white,
    2px 2px 4px white;
}
#cover .content .app-description {
  font-size: 1.5rem;
}
#cover .content .store-links a img {
  width: 240px;
}
/* #endregion */

/* #region Features */
#features .feature {
  background-color: #eee;
}
#features .feature:nth-child(odd) {
  background-color: white;
}
#features .feature:nth-child(even) {
  background-color: #f7fafc;
}

#features .feature .content {
  /* row */
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  /* cross-center */
  align-items: center;
  /* container */
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 0.5rem;
}

#features .feature .content .column-ss img {
  width: 200px;
}

#features .feature .feature:nth-child(odd) {
  background-color: white;
}
#features .feature .feature:nth-child(even) {
  background-color: #f7fafc;
}
/* #endregion */

/* #region About */
#about .content pre {
  white-space: pre-wrap;
}

#about .content .store-links a img {
  width: 240px;
}

/* #endregion */

@media (max-width: 1000px) {
  /* #region Cover */
  #cover .content h1.title {
    font-size: 7rem;
  }
  /* #endregion */
}

@media (max-width: 768px) {
  /* #region Cover */
  #cover {
    height: 480px;
  }

  #cover .content h1.title {
    font-size: 5rem;

    text-shadow: -1px -1px 2px white, 1px -1px 2px white, -1px 1px 2px white,
      1px 1px 2px white;
  }
  #cover .content .app-description {
    font-size: 1.25rem;
  }
  #cover .content .store-links a img {
    width: 200px;
  }
  /* #endregion */

  /* #region Features */
  #features .feature .content {
    font-size: 0.9rem;
  }
  #features .feature .content .column-ss img {
    width: 180px;
  }
  /* #endregion */

  /* #region About */
  #about .content {
    font-size: 0.9rem;
  }

  #about .content .store-links a img {
    width: 200px;
  }
  /* #endregion */
}

@media (max-width: 500px) {
  /* #region Cover */
  #cover {
    height: 440px;
  }
  #cover .space {
    height: 32px;
  }
  #cover .content h1.title {
    font-size: 3rem;
  }
  #cover .content .app-description {
    font-size: 1rem;
  }
  #cover .content .store-links a img {
    width: 180px;
  }
  /* #endregion */

  /* #region Features */
  #features .feature .content {
    font-size: 0.65rem;
  }
  #features .feature .content .column-ss img {
    width: 140px;
  }
  /* #endregion */

  /* #region About */
  #about .content {
    font-size: 0.9rem;
  }

  #about .content .store-links a img {
    width: 180px;
  }
  /* #endregion */
}
