*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    background-color: #000;
    overflow-x: hidden;
}
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;
}
.container__nav-section {
    margin-top: 50px;
}
.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(180deg, #0077ff 0%, #004491 100%);
    cursor: pointer;
    width: 140px;
    height: 50px;
}
.container__nav-section ul li:nth-child(2) a:hover {
    transform: scale(1.1);
}
.container__nav-section ul li:nth-child(3) a {
    background: linear-gradient(180deg, #ff0000 0%, #8a0000 100%);
    cursor: pointer;
    width: 140px;
    height: 50px;
    text-align: center;
}
.container__nav-section ul li:nth-child(3) a:hover {
    transform: scale(1.1);
}
.container__nav-section ul li:nth-child(4) a {
    background: linear-gradient(180deg, #ffc400 0%, #ff5100  100%);
    cursor: pointer;
    width: 140px;
    height: 50px;
}
.container__nav-section ul li:nth-child(4) a:hover {
    transform: scale(1.1);
}
.container__main-section {
    margin-top: 20px;
}
.container__main-section img {
    width: 100%;
}
.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, #eccb5b 0%, #eccb5b 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__info-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 30px 0;
}
.container__info-section table thead {
    background: radial-gradient(circle 214px at 46.5% 54.2%, #eccb5b 0, #000000 96%);
    color: #fff;
    border: 1px solid #eccb5b;
    height: 50px;
}
.container__info-section table tbody {
    color: #fff;
}
.container__info-section table tbody tr td {
    border: 1px solid #eccb5b;
    padding: 10px;
    background-color: #000;
}
.container__copyright {
    text-align: center;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 20px;
    background: radial-gradient(circle 214px at 50.5% 54.2%, #eccb5b 0, #000000 96%);
    font-weight: bold;
}
.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;
    }
}
@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,
    .container__nav-section ul li:nth-child(4) 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;
    }
} /*# sourceMappingURL=style.css.map */