body {
  background: #ffffff;
  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: 4rem 1.5rem 3rem 1.5rem;
  }
}

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

.homepage-logo {
  width: 450px;
}

.useful-doc {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-family: mBank;
  color: black;
  margin-top: 83px;
  font-weight: 600;
  text-decoration: underline;
  transition: all 150ms;
  cursor: pointer;
}

.homepage-title {
  color: black;
  font-size: 48px;
  font-weight: 700;
  margin-top: 8rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .homepage-title {
    margin-top: 4rem;
    font-size: 24px;
  }
  .homepage-logo {
    width: 246px;
  }

  .useful-doc {
    margin-top: 46px;
  }
}

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

.age-selector {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border-radius: 24px;
  padding: 30px 40px;
  box-sizing: border-box;
  width: 33.33%;
}

.age-selector-title {
  font-size: 32px;
  font-family: mBank;
  color: #000000;
  font-weight: 700;
  margin: 0;
  line-height: 100%;
}

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

  .age-selector {
    width: 100%;
    padding: 20px;
  }
}

@media screen and (max-width: 768px) {
  .age-selector-title {
    font-size: 20px;
    line-height: 20px;
    padding: 0 42px;
  }

  .d-lg-none {
    display: flex !important;
    height: 0;
  }
}

.d-lg-none {
  display: none;
}

.age-selector,
h2 {
  margin: 0;
}

.age-selector-button {
  background-color: #0000ff;
  color: white;
  font-family: mBank;
  padding: 15px 35px;
  border-radius: 100px;
  margin-top: 25px;
  cursor: pointer;
  text-decoration: none;
  transition: 150ms;
  font-size: 24px;
  font-weight: 700;
}

.age-selector-button:hover {
  opacity: 75%;
}
.age-selector-button:active {
  opacity: 50%;
}

.age-selector-pink {
  border: 2px solid #ff0eb2;
}

.age-selector-black {
  border: 2px solid #000000;
}

.age-selector-blue {
  border: 2px solid #0000ff;
}

.age-selector-green {
  border: 2px solid #00ff00;
}

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

.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-button {
    font-size: 16px;
  }
  .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;
  }
}
