html{
    font-family: 'Quicksand', sans-serif;
    margin:0;
    padding:0;
}

#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100vw;
    min-height: 100vh;
}

.content{
    position: fixed;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: calc(100vw - 64px);
    min-height: calc(100vh - 64px);
    background-color: rgba(0,0,0,0.5);
    padding:32px;
}

.content > h1{
    display: block;
    color:white;
    font-size: 80px;
    letter-spacing:10px;
    text-transform: uppercase;
    word-break: break-word;
}

.content > p{
    color:white;
    font-size: 22px;
}

.content > img{
    margin-top:50px;
    width:90%;
}

@media screen and (min-width: 768px) {
    .content > h1{
        color:white;
        font-size: 90px;
        letter-spacing: 15px;
    }

    .content > p{
        color:white;
        font-size: 45px;
    }

    .content > img{
        margin-top:70px;
        width:350px;
    }
}
