*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.body{
    overflow-y: hidden;
    background-color: #121212;
}

.container{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.5);;
}

video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.override{
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
}

.override a img{
    width: 250px;
    transition: max-width 0.5s ease, filter 0.5s ease;
}

.override a img:hover{
    filter: drop-shadow(0 0 10px rgba(109, 102, 168, 0.9));
    max-width: 280px;
}

@media (max-width: 768px) {
    .container {
        height: auto;
    }

    video {
        height: 100vh;
    }
}


