@font-face {
    font-family: 'Brinnan';
    src: url('../fonts/brinnan-black.otf') format('opentype');
    font-style: normal;
    font-weight: 900;
    font-display: auto;
}

body {
    color: #ffcf2d;
    font-size: 16px;
    font-family: 'Brinnan', sans-serif;
    font-style: normal;
    line-height: normal;

    overflow: hidden;
}

.cover {
    min-height: calc(100vh - 32px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.cover__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cover__headliner {
    font-weight: 900;
    font-size: 64px;
    text-align: center;

    margin-bottom: 45px;
}

.cover__project-name {
    display: flex;
    align-items: center;

    margin-bottom: 95px;
}

.cover__title {
    font-weight: 900;
    font-size: 128px;
    color: #dae562;
}

.cover__subtitle {
    font-weight: 900;
    font-size: 33px;
    color: #dae562;
}

.cover__logo {
    width: 316px;
    height: 317px;

    margin-left: -34px;
    margin-top: 30px;
}
.cover__description-wrapper {
    display: flex;
    align-items: center;

    gap: 65px;
}

.cover__description {
    font-weight: 900;
    font-size: 64px;
}

.cover__timer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cover__left-bg-picture {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 24vw;
    height: auto;
}

.cover__right-bg-picture {
    position: fixed;
    right: 0;
    top: 40px;
    width: 13.5vw;
    height: auto;
}

.timer__counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 85px;
}

.timer__nums {
    font-weight: 900;
    font-size: 64px;
    line-height: 48px;
}

.timer__desc {
    font-size: 16px;
    font-weight: 900;
}

.show-mobile {
    display: none !important;
}

@media (max-width: 1700px) {
    .cover__left-bg-picture {
        width: 18vw;
    }
}

@media (max-width: 1023px) {
    .cover__headliner {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .cover__title {
        font-size: 53px;
    }

    .cover__subtitle {
        font-size: 14px;
    }

    .cover__description {
        font-size: 32px;
    }

    .cover__logo {
        height: auto;
        width: 130px;
        margin-left: -18px;
        margin-top: 18px;
    }

    .cover__project-name {
        margin-bottom: 40px;
    }

    .cover__description-wrapper {
        flex-direction: column;
        gap: 8px;
    }

    .timer__counter {
        width: 70px;
    }

    .timer__nums {
        font-size: 42px;
    }

    .cover__timer {
        gap: 8px;
    }

    .cover__left-bg-picture {
        width: 32vw;
    }

    .cover__right-bg-picture {
        top: 20px;
        width: 11.5vw;
    }

    .show-mobile {
        display: block !important;
    }
}
