#cover {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

#cover-video {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    z-index: -1;
}

#cover-text {
    position: absolute;
    top: 0;
    width: 100%;
    height: 60vh;
    z-index: 8;
}

#cover h1 {
    position: absolute;
    bottom: 80px;
    font-size: 3vw;
    font-weight: bold;
}

#cover h2 {
    position: absolute;
    bottom: 50px;
    font-size:1.5vw;
    font-weight: bold;
}
    
#cover h1, #cover h2 {
    z-index: 9;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 80vw;
    font-family: 'Futura';
    color: white;
}

#btn-cover-video{
    color: white;
    border-color: white;
}

#btn-cover-video:hover {
    background: white;
    color: black;
}

/* RESPONSIVE */

@media screen and (max-width: 1200px) {
    #cover h1 {
        font-size: 4vw;
    }
    #cover h2 {
        font-size:3vw;
    }
}

@media screen and (max-width: 700px) {
    #cover h1 {
        font-size: 6vw;
    }
    #cover h2 {
        font-size:4vw;
    }
}

@media screen and (max-width: 600px) {
    #cover h1 {
        font-size: 8vw;
    }
    #cover h2 {
        font-size:6vw;
    }
}

@media screen and (max-width: 400px) {
    #cover h1 {
        font-size: 10vw;
    }
    #cover h2 {
        font-size:8vw;
    }
    #btn-cover-video{
        font-size: 15px;
    }
}