*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000;
  background-image: url("/images/bg2.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

.container {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
  height: 100vh;
}

.container__logo img {
  max-width: 70px;
}

.container__buttons ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 5px;
}

.container__buttons ul li a {
  font-weight: bold;
  color: #fff;
  padding-block: 15px;
  border-radius: 5px;
  text-transform: uppercase;
}
.container__text {
  position: relative;
  display: flex;
  flex-direction: column;
  color: white;
  margin-bottom: 5px;
  text-align: center;
  background-color: #000;
  border: 3px solid #f5b306;
  max-width: 460px;
  margin: 0 auto;
  padding-block: 10px;
  z-index: -1;
  margin-top: -39px;
  margin-bottom: 5px;
  border-radius: 30px;
  padding-top: 20px;
}
.container__text h1,
.container__text h2 {
  text-shadow: 0 0 3px #f0d20c, 0 0 5px #f0d20c;
  font-size: 1.25rem;
}
.container__buttons ul li:first-child a {
  background: linear-gradient(to bottom, #f5b306 0%, #886200 50%, #f5b306 100%);
  cursor: pointer;
}
.container__buttons ul li:first-child:hover {
  transform: scale(1.1);
  transition: 0.2s;
}
.container__buttons ul li:last-child a {
  background: linear-gradient(to bottom, #ffffff 0%, #727272 50%, #ffffff 100%);
  cursor: pointer;
}
.container__buttons ul li:last-child:hover {
  transform: scale(1.1);
  transition: 0.2s;
}
.container__buttons ul li a {
  display: inline-block;
  text-align: center;
  width: 270px;
}
.container__nav-section {
  margin-top: 20px;
}
.container__nav-section div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container__nav-section div img {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  background-color: #000;
  border-radius: 10px;
  padding: 10px 20px;
  margin-bottom: 20px;
  border: 3px solid #f5b306;
}
.container__main-section {
  margin-top: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 675px;
}
.container__main-section img {
  width: 100%;

  animation: blinkings 1s infinite;
}
.container__copyright {
  text-align: center;
  font-weight: bold;
  padding-bottom: 20px;
  color: white;
  margin-top: 5px;
}

.blink {
  animation: blink-animation 0.5s steps(5, start) infinite;
  -webkit-animation: blink-animation 0.5s steps(5, start) infinite;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@keyframes blinkings {
  0% {
    border: 2px solid #ffffff;
  }
  100% {
    border: 2px solid #f5b306;
  }
}
@media (max-width: 768px) {
  body {
    /*background-image: none;*/
    overflow-y: scroll;
  }

  .container__nav-section {
    margin-inline: 15px;
  }
  .container__nav-section ul {
    display: block;
  }
  .container__main-section {
    max-width: 85%;
    margin-top: 15px;
  }
  .container__main-section div a {
    text-align: center;
  }
  .container__info-section {
    margin-inline: 15px;
  }

  .container__buttons {
    margin-top: 15px;
  }

  .container__buttons ul {
    flex-direction: column;
    gap: 1rem;
  }

  .container__nav-section {
    margin-top: 60px;
  }
  .container__buttons ul li {
    width: 100%;
    text-align: center;
  }
  .container__buttons ul li a {
    display: inline-block;
    max-width: 280px;
    width: 100%;
  }
}
