.video-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container video {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -10;

}

.video-container .text {
    /* display: flex; */
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 500px;
}

.video-container .text .title {
    font-size: 80px;
    color: #fff;
    font-family: var(--fancy-font);
    text-shadow: 0 0 18px #fff6;
    margin: 5px 0;
}

.video-container .text .subtitle {
    margin: 5px 0;
    font-size: 14px;
    font-family: var(--main-font);
    color: #fff;
    text-align: center;
}

.description {
    min-height: 300px;
    padding: 80px 100px;
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;
}

.description .bigtext {
    font-size: 40px;
    margin-bottom: 40px;
}

.description .smalltext {
    margin: 10px 0;
    font-size: 22px;
}