body {
  background: #000;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Lato', sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5px;
}

.team-heading {
  font-size: 3em;
  color: rgba(255, 255, 255, 0.1);
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-animation: shimmer 2s infinite;
}

.mission-statement, .hard-rule, .proof-bold, .call-to-action {
  font-family: "Lato";
  font-weight: 300;
  font-size: 1em;
  color: rgba(255, 255, 255, 0.65);
  text-align: justify;
  line-height: 1.5em;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  margin: 10px 0;
  padding-top: 10px;
  width: 85%;
  max-width: 500px;
}

.legal-notice {
  font-size: 0.7em;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.5;
}
p {
  font-family: "Lato";
  font-weight: 300;
  font-size: 1em;
  color: rgba(255, 255, 255, 0.65);
  text-align: justify;
  line-height: 1.5em;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  margin: 10px 0;
  padding-top: 10px;
  width: 85%; /* Ширина текста */
  max-width: 500px; /* Ограничение ширины */
}
p a {
  text-decoration: none;
  color: #fff;
}
p a:visted {
  color: #fff;
}
.team-heading {
  text-align: center;
  color: rgba(255,255,255,0.1);
  background: -webkit-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  background: -moz-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  background: gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  -webkit-background-size: 125px 100%;
  -moz-background-size: 125px 100%;
  background-size: 125px 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-animation-name: shimmer;
  -moz-animation-name: shimmer;
  animation-name: shimmer;
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: #222;
}
@-moz-keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@-webkit-keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@-o-keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}




footer a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}

.footer-text {
  font-size: 0.7em;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.5;
}



header {
  background: #000; /* Задний фон хедера */
  padding: 10px 0;
}

.menu {
  display: flex;
  justify-content: space-around; /* Равномерное распределение пунктов меню */
  align-items: center;
  margin: 0;
  padding: 0 20px; /* Отступы у самого блока меню */
  list-style: none;
}

.menu a {
  color: #fff; /* Белый текст */
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  padding: 0 15px; /* Отступы слева и справа для каждого пункта */
}

.menu a:hover {
  text-decoration: underline;
}

/* Адаптивность для меню */
@media (max-width: 768px) {
  .menu {
    flex-direction: row; /* Пункты остаются в одной строке */
    justify-content: space-between;
    padding: 0 10px; /* Уменьшение отступов на маленьких экранах */
  }

  .menu a {
    font-size: 0.9em; /* Уменьшение размера текста на маленьких экранах */
    padding: 0 10px; /* Меньшие отступы между пунктами */
  }
}
