* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

body {
    font-family: Trebuchet MS;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

#background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -999;
}

.title {
    display: flex;
    justify-content: center;
    margin-top: 30vh;
}

.title h1 {
    font-family: 'BodoniFLF', sans-serif;
    font-size: 90px;
    text-transform: uppercase;
    max-width: fit-content;
    color: white;

    text-align: center;

    cursor: default;
}

.btn {
    justify-content: center;
    width: 100%;
    cursor: default;
}

.explore-btn {
    display: flex;
    justify-content: center;
    margin: 1vh auto 0 auto;
    width: 250px;
    padding: 10px;

    color: white;
    font-size: 35px;
    text-decoration: none !important;

    border-radius: 50px;
    border: white 3px solid;

    /* "to left" / "to right" - affects initial color */
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 255) 50%) right;
    background-size: 200%;
    transition: .5s ease-out;
}

.explore-btn:hover {
    background-position: left;

    color: black;
    transition: 0.5s all;
}


/* Screen Responsiveness */
@media screen and (max-width: 1024px) {
    .title {
        margin-top: 15vh;
    }

    .title h1 {
        font-size: 80px;
    }
}

@media screen and (max-width: 425px) {
    .title h1 {
        font-size: 65px;
    }
}

@media screen and (max-width: 375px) {
    .title h1 {
        font-size: 60px;
    }
}

@media screen and (max-width: 320px) {
    .title h1 {
        font-size: 50px;
    }
}