
#myVideo {
    z-index: 1;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

#supercontenedor {
    z-index: 5;
    position: relative;
    box-sizing: border-box;
    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#titulo {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
}

#loadingCapa {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;

}

#capaImagen {
    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #000000bb;

}

#loadingCapa img {
    max-width: 100%;
    max-height: 100%;
}

#capaInputs {
    display: flex;
    flex-direction: column;
}

#enlace,
#enviar {
    box-sizing: border-box;
    width: 500px;
    padding: 7px 15px;
    font-size: 20px;
}

@media (max-width: 600px) {
    #supercontenedor {
        box-sizing: border-box;

        width: 100%;
        height: 100%;

        display: flex;
        justify-content: center;
        align-items: center;

        padding: 0;
    }

    #capaInputs {
        box-sizing: border-box;
        width: 100%;
        padding: 0 20px;
    }

    #enlace,
    #enviar {
        box-sizing: border-box;
        width: 100%;
        padding: 7px 15px;
        font-size: 15px;
    }

    #titulo {
        top: 80px;
        width: 90%;
    }
}

#superContenedor {
    box-sizing: border-box;
    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

form div {
    margin-bottom: 0.7em;
}

@media (max-width: 600px) {
    form {
        width: 100vw;
    }

    input {
        width: 100%;
    }
}