body {
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, #0f0f0f 50%, rgba(10, 10, 10, 1) 100%);
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 7rem 8vw;
  box-sizing: border-box;
  /* overflow: hidden; */
}

@media screen and (max-width: 768px) {
  body {
    height: auto;
    padding: 1rem 2rem 3rem 1rem;
  }
}

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

.homepage-logo {
  width: 220px;
}

.homepage-title {
  color: white;
  font-size: 2.5em;
  margin-top: 8rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .homepage-title {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
  .homepage-logo {
    display: none;
  }
}

.age-selector-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 2rem;
  gap: 2rem;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .age-selector-container {
    flex-direction: column;
    align-items: center;
  }
}

.age-selector {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border-radius: 30px;
  padding: 35px;
  background-color: #0e0e0e;
  box-sizing: border-box;
}
.age-selector,
h2 {
  margin: 0;
}

.age-selector-button {
  background-color: #ae0000;
  color: white;
  padding: 10px 30px;
  border-radius: 100px;
  margin-top: 25px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  transition: 150ms;
}
.age-selector-button:hover {
  opacity: 75%;
}
.age-selector-button:active {
  opacity: 50%;
}

.age-selector-red {
  border: 2px solid #ae0000;
  box-shadow: 0px 0px 20px 0px rgba(174, 0, 0, 0.5);
}
.age-selector-blue {
  border: 2px solid #0065b1;
  box-shadow: 0px 0px 20px 0px rgba(0, 101, 177, 0.5);
}
.age-selector-green {
  border: 2px solid #008e20;
  box-shadow: 0px 0px 20px 0px rgba(0, 142, 32, 0.5);
}

.main-banner-image {
  height: 350px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  object-position: bottom;
}

.joystick-image-left {
  width: 400px;
  position: absolute;
  bottom: 0;
  left: -120px;
  z-index: -1;
  opacity: 0.5;
  transform: rotate(-15deg);
}

.joystick-image-right {
  width: 400px;
  position: absolute;
  bottom: 0;
  right: -120px;
  z-index: -1;
  opacity: 0.5;
}
.header {
  width: 100%;
}
.header > div {
  display: none;
}
.header .logo {
  width: 120px;
}

@media screen and (max-width: 768px) {
  .age-selector h2 {
    font-size: 1.2rem;
  }
  .age-selector {
    width: 100%;
    padding: 20px;
  }
  .main-banner-image {
    display: none;
  }
  .joystick-image-left,
  .joystick-image-right {
    display: none;
  }
  .header > div {
    display: flex;
    justify-content: start;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .header {
    display: none;
  }
}
