body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #333;
  color: white;
  text-align: center;
}
body .store-buttons {
  padding-top: 1em;
}
body .store-buttons a img {
  height: 60px;
  margin: 0 10px;
}
body .main {
  background-image: url(img/pexels-simonmigaj-746386.jpg);
  background-size: cover;
}
body .main .cover {
  background-color: rgba(51, 51, 51, 0.7);
}
body .main header {
  color: white;
  padding: 2rem 1rem;
  background-image: url(img/icon.svg);
  background-size: 48px;
  background-position: center 100%;
  background-repeat: repeat-x;
}
body .main header .title {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
body .main header .title .icon {
  border-radius: 8px;
  width: 48px;
  height: 48px;
  background-image: url(img/icon-256-black.png);
  background-size: cover;
  margin-right: 1em;
}
body .main header .title h1 {
  margin: 0;
  font-size: 2.5rem;
}
body .main header p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
body .main .container {
  padding: 1rem;
  max-width: 800px;
  margin: 0 auto;
}
body .main .top-content {
  padding-bottom: 1em;
}
body .main .top-content p {
  line-height: 1.5em;
  text-align: left;
}
body .main .top-content .screenshots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
body .main .top-content .screenshots img {
  width: 180px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
body .features-hero {
  padding-bottom: 1em;
}
body .features-hero .features {
  padding: 1em;
  font-family: sans-serif;
}
body .features-hero .features .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
body .features-hero .features h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: rgb(178.5, 178.5, 178.5);
}
body .features-hero .features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
body .features-hero .features .features-grid .feature-card {
  background: rgb(25.5, 25.5, 25.5);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body .features-hero .features .features-grid .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
body .features-hero .features .features-grid .feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
body .features-hero .features .features-grid .feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: white;
}
body .features-hero .features .features-grid .feature-card p {
  font-size: 1rem;
  color: rgb(178.5, 178.5, 178.5);
}
body footer {
  color: white;
  padding: 1rem;
  background: rgb(25.5, 25.5, 25.5);
  font-size: 0.9rem;
}
body footer a {
  color: white;
  text-decoration: underline;
}

/*# sourceMappingURL=main.css.map */
