/* App */

html,
body {
    color-scheme: dark;
    scroll-behavior: smooth;
    text-rendering: optimizelegibility;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    background-color: #150d01;
    font-family: "Inter", sans-serif;
    color: #FFFFFF;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0;
    margin: 0;
    text-wrap: balance;
}

.background {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 0;
    -o-object-fit: cover;
    object-fit: cover;
    mix-blend-mode: overlay;
}

main {
    position: relative;
    width: 100%;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

main .block {
    width: 90%;
    margin: auto;
    position: relative;
    height: 100%;
    display: grid;
    justify-content: center;
    grid-template-rows: 1fr;
    max-width: 630px;
}

main .block .background-logotype {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 100px;
    left: 0;
    right: 0;
    width: 80%;
}

main .block .title {
    display: grid;
    align-items: center;
    align-content: center;
    justify-content: center;
}

main .block .title .logotype {
    position: relative;
}

main .block .title .logotype svg {
    position: relative;
    -webkit-animation: loading 3s infinite ease-in-out;
    animation: loading 3s infinite ease-in-out;
    width: 145px;
    height: 245px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: auto;
}

main .block .title h1 {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


main .block .title h2 {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.50);
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

main .block .info {
    padding-top: 75px;
    padding-bottom: 45px;
}

main .block .info h2 {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

main .block .info h2 a {
    transition: var(--transition);
    text-decoration: none;
    color: #D9AA45;
}

main .block .info h2 a:hover {
    opacity: 0.8;
}

main .block .info h2 a:active {
    opacity: 0.5;
}

main .block .info h3 {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.50);
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Animation */

@-webkit-keyframes loading {
    from {
        transform: scale(1);
    }

    50% {
        transform: scale(1.075);
    }

    to {
        transform: scale(1);
    }
}

@keyframes loading {
    from {
        transform: scale(1);
    }

    50% {
        transform: scale(1.075);
    }

    to {
        transform: scale(1);
    }
}

@-webkit-keyframes cap {
    from {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes cap {
    from {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    to {
        transform: translateY(0);
    }
}

@-webkit-keyframes dash {
    from {
        stroke-dashoffset: 124;
    }

    50% {
        stroke-dashoffset: 256;
    }

    to {
        stroke-dashoffset: 124;
    }
}

@keyframes dash {
    from {
        stroke-dashoffset: 124;
    }

    50% {
        stroke-dashoffset: 256000;
    }

    to {
        stroke-dashoffset: 124;
    }
}

/* Adaptation */

@media screen and (max-width: 768px) {
    main .block .title img {
        width: 128px;
        height: 225px;
    }

    main .block .title h1 {
        font-size: 32px;
    }

    main .block .title h2,
    main .block .info h3 {
        font-size: 14px;
    }

    main .block .info h2 {
        font-size: 18px;
    }
}