body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*z-index: -1;*/
}

.text-overlay {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.text-overlay h1 {
    font-size: 7vw;
    margin-top: 10vw;
    text-shadow:2px 2px 5px black;
    text-transform:uppercase;
    font-weight:200;
    font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;

}

.text-overlay p {
    font-size: 1.5em;
    margin: 10px 0 0;
}

