@charset "UTF-8";

@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700,800&display=swap);

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-inline-size: 100%;
    max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    -moz-appearance: revert;
    appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
    all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
    color: unset;
}

::placeholder {
    color: unset;
}

/* remove default dot (•) sign */
::marker {
    content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable=false])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
    -webkit-user-drag: element;
}

html,
body {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    color: #fff;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background: #231c28;
    background: linear-gradient(0deg, #231c28, #2c144a);
}

body.lock {
    overflow-y: hidden;
}

p {
    line-height: 150%;
}

h1 {
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    margin: 30px 0;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 25px 0;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background-color: #01ff24;
}

h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 20px 0;
}

ol {
    list-style: decimal;
    padding: 15px 25px;
}

ul {
    list-style: disc;
    padding: 15px 25px;
}

li {
    line-height: 150%;
}

ol li::marker,
ul li::marker {
    color: #01ff24;
}

table {
    border-collapse: collapse;
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

table tr td,
table tr th {
    border: 1px solid #fff;
    padding: 15px;
}

table tr th {
    background-color: rgb(159, 192, 245);
    color: black;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

table tr td:hover {
    background-color: rgb(140, 157, 184);
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    background: linear-gradient(94.75deg, #101726 -1.41%, #301414 173.5%);
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .container .nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 18px;
}

.header .container .nav ul li {
    color: #9fc0f5;
    transition: all 0.2s ease-in-out;
}

.header .container .nav ul li:hover {
    color: #fff;
}

.header .container .auth {
    display: flex;
    gap: 20px;
}

.header .container .auth .btn {
    border-radius: 30px;
    font-size: 18px;
    text-transform: uppercase;
    padding: 15px 25px;
    color: #fff;
    font-weight: 600;
}

.header .container .auth .btn-1 {
    background: #01ff24;
    background: linear-gradient(180deg, #01ff24, #0f4314);
    animation: glowing1 1500ms infinite;
}

.header .container .auth .btn-1:hover {
    background: linear-gradient(0deg, #01ff24, #0f4314);
    animation: none;
}

.header .container .auth .btn-2 {
    background: #9f01ff;
    background: linear-gradient(180deg, #9f01ff, #2c144a);
    animation: glowing2 1500ms infinite;
}

.header .container .auth .btn-2:hover {
    background: linear-gradient(0deg, #9f01ff, #2c144a);
    animation: none;
}

.header .container .burger {
    display: none;
}

.main {
    height: 100%;
    flex: 1 1 auto;
    padding: 120px 0 50px;
}

.main .content p {
    margin: 15px 0;
}

.main__btn {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.main__btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #01ff24, #0f4314);
    border-radius: 30px;
    padding: 20px 30px;
    font-size: 18px;
    animation: pulse 2s infinite;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    background: linear-gradient(94.75deg, #101726 -1.41%, #301414 173.5%);
}

.container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 16px;
}

@media (max-width: 1199px) {
    .header .container {
        flex-direction: column;
        gap: 7px;
        position: relative;
    }

    .header .container .nav.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background: linear-gradient(94.75deg, #101726 -1.41%, #301414 173.5%);
    }

    .header .container .nav.active ul {
        flex-direction: column;
        font-size: 24px;
    }

    .header .container .burger {
        display: block;
        position: absolute;
        top: 0;
        right: 15px;
        width: 30px;
        height: 20px;
        z-index: 3;
    }

    .header .container .burger::after, .header .container .burger::before {
        content: "";
    }

    .header .container .burger::after, .header .container .burger::before,
    .header .container .burger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #9f01ff;
        border-radius: 10px;
        transition: all 0.3s ease 0s;
    }

    .header .container .burger::before {
        top: 0;
    }

    .header .container .burger::after {
        bottom: 0;
    }

    .header .container .burger span {
        top: 9px;
    }

    .header .container .burger.active::before {
        transform: rotate(45deg);
        top: 9px;
    }

    .header .container .burger.active::after {
        transform: rotate(-45deg);
        bottom: 9px;
    }

    .header .container .burger.active span {
        transform: scale(0);
    }

    .main {
        padding: 160px 0 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        margin: 25px 0;
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
        margin: 20px 0;
    }

    h3 {
        font-size: 20px;
        margin: 15px 0;
    }

    table {
        display: block;
    }

    .container {
        max-width: 100%;
    }
}

@keyframes glowing1 {
    0% {
        box-shadow: 0 0 5px #4d4d4d;
    }
    50% {
        box-shadow: 0 0 20px #01ff24;
    }
    100% {
        box-shadow: 0 0 5px #4d4d4d;
    }
}

@keyframes glowing2 {
    0% {
        box-shadow: 0 0 5px #4d4d4d;
    }
    50% {
        box-shadow: 0 0 20px #9f01ff;
    }
    100% {
        box-shadow: 0 0 5px #4d4d4d;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 1px 0 1px #0f4314, 0 1px 1px #39ffa4, -1px 0 1px #0f4314, 0 -1px 1px #39ffa4;
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
footer p {
  text-align: center;
  padding: 20px;
  color: white;
}
main img {
  display: block;
  max-width: 100%;
  border-radius: 14px;
  margin: 30px auto;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}