body {
  background-color: #f2f2f2;
}

header {
  z-index: 999;
  background-color: #f2f2f2;
  position: sticky;
  top: 0;
  width: 100%;
  padding: 12px 0;
  box-shadow: 0px 5px 10px rgb(125, 125, 125);
}

header nav .navbar-collapse ul li {
  display: inline-block;
  margin-left: 12px;
}

header nav .navbar-collapse ul li a {
  color: #000;
}

#hero {
  background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('../images/hero.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  height: 60vh;
}

#hero .headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60%;
  margin: 0 auto;
  padding-top: 10%;
}

#hero .headline h1 {
  color: #fff;
  font-size: 60px;
}

#hero .headline p {
  text-align: center;
  color: #fff;
  font-size: 24px;
}

#why {
  margin-top: 3%;
  padding: 48px 0;
  background-color: #ffffff;
}

#why .img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#why .img img {
  width: 100%;
}

#why h1,
#why p,
#why h4 {
  color: #000;
}

#about {
  padding: 48px 0;
  background-color: #ffffff;
}

#about .img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#about .img img {
  width: 100%;
}

#about h1,
#about p,
#about h4 {
  color: #000;
}

.game {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/game.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 70vh;
}

.linksiz {
  display: inline-block;
  padding: 10px 40px;
  background: #67C090;
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}

.linksiz:hover {
  background: #c93e66;
}

#disclaimer {
  padding: 24px 0;
  margin-top: 24px;
  background-color: #ffffff;
}

#disclaimer .img {
  width: 100%;
  display: flex;
  justify-content: end;
}

.btn-custom {
  background-color: #26667F; 
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #ffd700;
  color: #1b1b2f;
}

#disclaimer .img img {
  width: 25%;
}

footer {
  padding: 24px 0;
  background-color: #f2f2f2;
}

footer .img {
  width: 100%;
  padding: 12px 0;
}

footer .img a img {
  width: 100%;
}

footer ul {
  padding-inline-start: 0;
}

footer ul li {
  display: inline-block;
  padding: 0 12px;
}

footer ul li a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

footer ul li a:hover {
  color: rgb(107, 107, 107);
}

#form {
  padding: 24px 0;
}

#privacy {
  padding: 24px 0;
  text-align: center;
}

#privacy ul li {
  list-style-type: none;
}

#cookie {
  padding: 24px 0;
  text-align: center;
}

#responsible {
  padding: 24px 0;
  text-align: center;
}

#hero-game {
  background-color: #00596d;
  padding: 24px 0;
  color: #fff;
}

#hero-game .img {
  width: 100%;
}

#hero-game .img img {
  width: 70%;
}

.age-disclaimer-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 100000;
  background-image: linear-gradient(#000000f8, #000000f8);
  background-size: 400px;
}

.custom-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  max-width: 600px;
  width: 95%;
  border-radius: 10px;
  background-position: center;
  background-size: 700px;
  background-position: top;
  background-size: 300px;
  box-shadow: 0px 0px 40px 0px #ffffff61;
  background-repeat: repeat no-repeat;
}

.custom-modal a {
  background-color: #e94560;
  text-align: center !important;
  color: #fff;
  transition: 0.2s;
  margin-bottom: 1px;
  display: inline-block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  text-decoration: none;
}

.custom-modal a:hover {
  background: #b9374c;
}

.custom-modal h3 {
  color: #000;
  font-weight: bolder;
  font-size: 50px;
  margin-bottom: 50px !important;
  margin-top: 30px !important;
}

/* aasd */

@media screen and (max-width: 600px) {
  #hero {
    height: 40vh;
  }

  #hero .headline {
    padding-top: 20%;
    width: 100%;
  }

  #hero .headline h1 {
    font-size: 20px;
  }

  #hero .headline p {
    font-size: 14px;
  }

  #disclaimer .img {
    justify-content: center;
  }
}