@font-face {
    font-family: "Montserrat";
    src: url("./font/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("./font/Montserrat-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

body {
    background: #0D010C;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
    font-weight: 900;
}

.wrapper {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.video-desktop {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    z-index: 0;
}

.video-mob {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    z-index: 0;
}

.top {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem;
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: 55px;
    font-style: italic;
    font-weight: 900;
    line-height: 43px;
    letter-spacing: 1.47px;
}

h2 {
    font-size: 27px;
    font-style: italic;
    font-weight: 900;
    line-height: 39px;
    letter-spacing: 0.81px;
    max-width: 520px;
    display: block;
    margin: auto;
}

.big {
    font-size: 73px;
    letter-spacing: 2.19px;
}

.bigger {
    font-size: 36px;
    letter-spacing: 1.08px;
}

.yellow {
    color: #FFC600;
}

.bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.btn-main {
    border-radius: 4px;
    background: #FFC600;
    text-decoration: none;
    margin-top: 2rem;
    display: block;
    width: 180px;
    text-align: center;
    padding: 1rem 0;
    color: #111928;
    margin: 2rem auto 0;
    transition: .3s;
}

.btn-main:hover {
    background: #e6b60a;
}

@media screen and (max-width: 768px) {
    .video-desktop {
        display: none;
    }

    .video-mob {
        display: block;
    }

    .bottom {
        display: none;
    }

    h1 {
        font-size: 32px;
        line-height: 30px;
        letter-spacing: 0.96px;
        width: 100%;
        display: block;
    }

    h1 span {
        display: block;
    }

    h1 span:nth-child(1) {
        text-align: left;
    }

    h1 span:nth-child(2) {
        text-align: right;
    }

    h2 {
        font-size: 14px;
        font-weight: 900;
        line-height: 20px;
        letter-spacing: 0.42px;
    }

    .big {
        font-size: 41px;
        font-weight: 900;
        line-height: 20px;
        letter-spacing: 1.23px;
    }

    .bigger {
        font-size: 14px;
        font-weight: 900;
        line-height: 20px;
        letter-spacing: 0.42px;
    }

    .content {
        margin-bottom: auto;
        margin-top: 10%;
    }

    .logo img {
        height: 35px;
    }

    .top {
        padding: 2rem;
    }

    .btn-wrap {
        position: fixed;
        bottom: 0;
        left: 0;
        padding-bottom: 3rem;
        width: 100%;
    }
}