header#main-header {
    background-color: var(--bg-color);
}

.nav-link {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: all 100ms ease-in;
    padding: 10px;
    margin: 4px;
    border-radius: 0px;
    text-decoration: none;
    width: 30%;
    max-width: 200px;
    display: inline-block;
}

#leyenda1 {
    color: var(--bg-color);
    font-family: var(--font-family);
    font-size: 16px;
    margin: 0;
    display: block;
    width: 60%;
    float: right;
}

@media (min-width: 640px) {
    #leyenda1 {
        font-size: 22px;
    }
}

@media (min-width:1024px) {
    #leyenda1 {
        font-size: 30px;
    }
}

#leyenda1 p {
    padding: 15px;
    background-color: #000;
    margin: 0;
    width: 90%;
    float: right;
}

#videocontainer {
    position: relative;
    width: 100%;
    display: inline-block;
}

#videocontainer button {
    width: 20%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    border: 0;
}

#videocontainer button:hover {
    filter: invert(1);
}