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

.headline {
    font-size: 110px;
    line-height:100px;
    letter-spacing: -10px;
}

.subheadline {
    font-size: 24px;
}

@media (max-width: 768px) {
    .headline {
        font-size: 60px;
        line-height:55px;
        letter-spacing: -5px;
    }
     .subheadline {
        font-size: 20px;
    }
}

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

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


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1; 
    color: white;
    text-align: center;
    top: 45%;
    transform: translateY(-50%);
    /* font-family: sans-serif; */
}
