@import url('https://fonts.googleapis.com/css2?family=B612:ital,wght@0,700;1,700&family=Tourney:ital@1&display=swap');

video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.7;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.square {
    background-color: #000000;
    height: 100%;
    width: 100%;
    background-size: cover;
    position: relative;
    mix-blend-mode: multiply;
}

header h1 {
    font-family: 'Tourney', cursive;
    font-size: 130px;
    color: #d5d4d4;
    mix-blend-mode: screen;
    text-align: center;

}

.texto_grande {
    color: #ff0000;
    text-align: center;
    font-size: 48px;
    mix-blend-mode: saturation;
}

.texto_mediano {
    color: #ffffff;
    text-align: center;
    font-size: 24px;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 33px;
    line-height: 30px;
    background-color: #f5f5f5;
    color: #cce5ff;
    font-size: 12px;
}

.center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}