*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background: url(/images/BACKGROUND.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
  /* background-color: #000; */
}
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
}
.container {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
  background: #00000070;
  padding: 10px 40px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 13px 8px;
}
.container__nav-section {
  margin-top: 20px;
}
.container__nav-section ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.container__nav-section ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  border-radius: 5px;
}
.container__nav-section ul li:first-child img {
  width: 290px;
  height: auto;
}
.container__nav-section ul li:nth-child(2) a {
  background: linear-gradient(to bottom, #00E9FF 0%, #00A3FF 100%);
  cursor: pointer;
  border-radius: 5px;
  border: 2px solid #0082FF;
  width: 150px;
  height: 40px;
}
.container__nav-section ul li:nth-child(2) a:hover {
  transform: scale(1.1);
  transition: 0.2s;
}
.container__nav-section ul li:nth-child(3) a {
  background: linear-gradient(to bottom, #FFDE00 0%, #FFAC00 100%);
  cursor: pointer;
  border-radius: 5px;
  border: 2px solid #FF8600;
  width: 150px;
  height: 40px;
  text-align: center;
}
.container__nav-section ul li:nth-child(3) a:hover {
  transform: scale(1.1);
  transition: 0.2s;
}
.container__main-section {
  margin-top: 20px;
}
.container__main-section img {
  width: 100%;
  width: 740px;
  height: 740px;
  display: block;
  margin: auto;
}
.container__main-section div {
  text-transform: uppercase;
  text-overflow: ellipsis;
}
.container__main-section div a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    180deg,
    rgb(255, 0, 118) 0%,
    rgb(255, 0, 118) 35%,
    #000000 96%
  );
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 50px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  margin-block: 20px;
  border-radius: 5px;
}
.container__main-section div a:hover {
  transform: scale(1.1);
}
.container__btns {
  margin-top: 18px;
}
.container__btns ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  /* border-radius: 5px; */
  margin-top: 15px;
}
.container__btns ul li:first-child a {
  background: linear-gradient(to bottom, #00E9FF 0%, #00A3FF 100%);
  cursor: pointer;
  width: 100%;
  height: 50px;
}
.container__btns ul li:last-child a {
  background: linear-gradient(to bottom, #FFDE00 0%, #FFAC00 100%);
  cursor: pointer;
  width: 100%;
  height: 50px;
}
.container__info-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 30px 0;
}
.container__info-section table thead {
  background: linear-gradient(to bottom, #FFDE00 0%, #FFAC00 100%);
  color: #fff;
  border: 1px solid #FFAC00;
  height: 50px;
}
.container__info-section table tbody {
  color: #fff;
}
.container__info-section table tbody tr td {
  border: 1px solid #FFAC00;
  padding: 10px;
  background-color: #000;
}
.container__copyright {
  text-align: center;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  background: linear-gradient(to bottom, #FFDE00 0%, #FFAC00 100%);
  font-weight: bold;
}
@media (max-width: 768px) {
  .container__nav-section {
    margin-inline: 15px;
  }
  .container__nav-section ul {
    display: block;
  }
  .container__nav-section ul li:nth-child(3) a,
  .container__nav-section ul li:nth-child(2) a {
    width: 100%;
    margin-bottom: 10px;
  }
  .container__main-section {
    margin-inline: 15px;
  }
  .container__main-section div a {
    text-align: center;
  }
  .container__info-section {
    margin-inline: 15px;
  }
  .container__main-section img {
    width: 652px;
    height: 652px;
  }
  .container__btns ul li:last-child a {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .container__main-section img {
    width: 270px;
    height: 260px;
  }
}

/*# sourceMappingURL=style.css.map */