main {
    position: relative;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -100;
}

main::before {
    content: "";
    position: absolute;
    background-color: rgba(0,0,0,0.4);
    height: 100%;
    width: 100%;
    z-index: -10;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.content .row {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.content img{
    object-fit: contain;
    width: 10%;
    min-width: 300px;
}

.content a{
    margin-top: 100px;
    font-weight: 500;
    font-size: 3vw;
    padding: 2vw 5vw;
    text-shadow: 3px 3px 1px var(--black);
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    border: 3px solid var(--white);
    border-radius: 15px;
    box-shadow: 2px 2px 5px var(--black);
}

@media (max-width: 792px) {   
    .content .row {
        flex-direction: column;
        gap: 50px;
    }

    .content a{
        margin-top: 50px;
        font-size: 24px;
        padding: 15px 10px;
        border: 2px solid var(--white);
    }

    .title-index {
        width: 90%;
    }
}


@media (max-width: 400px) {     
    .content img{
        min-width: 200px;
    }

    .content a {
        font-size: 18px;
    }

    .title-index {
        width: 90%;
    }
}

.height-auto {
    height: auto;
}