body {
  --text: #ededed;
  --background: #212731;
  --primary: #393e46;
  --secondary: #dddbff;
  --accent: #ffff00;

  background-color: var(--background);
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-title {
  color: var(--text);
  text-align: center;
  font-family: "Tilt Neon", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "XROT" 0, "YROT" 0;
  font-size: 2.4em;
  margin-top: 72px;
}

.hero-image {
  position: relative;
  width: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.platform {
  position: relative;
  display: inline-block;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
}
.get-button {
  width: 50%;
}
.get-button a {
  width: 100%;
}
.get-button .btn {
  width: 90%;
}
.image-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 8px;
}
.description {
  color: var(--background);
  margin-top: 12px;
  padding: 8px;
  background-color: var(--secondary);
}

.description h3 {
    font-family: "Tilt Neon", system-ui;
    font-weight: 400;
    font-style: normal;
}

.description-text {
    font-family: "poppins", serif;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5;
    font-size: 0.8em;
}

.screenshots {
    color: var(--text);
    margin-top: 12px;
    padding: 8px;
}

.carousel {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}
.carousel-inner img {
    width: 100%;
}
.carousel-item {
    height: auto;
}
.carousel-inner {
    height: auto;
}

.requirements {
    margin-top: 12px;
    padding: 8px;
    background-color: var(--primary);
    color: var(--text);
}

.additional-list {
    list-style: none;
    padding-left: 0;
}
@media screen and (min-width: 768px) {
  .hero-collection, .other-section {
    padding: 8px 10vw;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto;
    align-items: start;
    gap: 20px;
  }
  .hero-image {
    margin-top: 12px;
  }
   .screenshots {
    margin-top: 12px;
   }
   .description {
    background-color: var(--primary);
    color: var(--text);
   }
   .requirements {
    background-color: var(--background);
    color: var(--text);
   }
}