@font-face {
    font-family: 'Aesthet Nova';
    src: url('../fonts/fonnts.com-Aesthet-Nova-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Aesthet Nova';
    src: url('../fonts/fonnts.com-Aesthet-Nova-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Aesthet Nova';
    src: url('../fonts/fonnts.com-Aesthet-Nova-.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}


body {
    font-family: 'Aesthet Nova', sans-serif;

    background-color: black;
    color: #fff;
    position: relative;
    margin: 0;
    min-height: 100vh;
}

.wrapper {
    width: 95%;
    margin: 0 auto;
}

.logo {
    position: absolute;
    top: 25px;
    left: 25px;
}

.logo img {
    max-width: 100px;
}

.main-screen__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 100vh;
}

.main-screen__container h1 {
    font-size: 100px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;
}

.main-screen__container p {
    font-size: 28px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 50px;
}

.main-screen__container a:not(.logo) {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    transition: all ease-in-out .4s;
}

.main-screen__container a:hover:not(.logo) {
    text-decoration: underline;
}

.bg-video {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 575px) {
    .main-screen__container h1 {
        font-size: 60px;
    }

    .main-screen__container p {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .main-screen__container a:not(.logo) {
        font-size: 16px;
    }
}