*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
    --color-blanco: #FFFFFF;
    --blurFondo: hsl(0, 0%, 100% / 0.8);
}

img {
    max-width: 15rem;
}

header, footer, .headerMenu {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 5rem;
    padding: 0 1rem 0 1rem;
    z-index: 2;
}

header {
    top: 0;
}

.logoLove {
    grid-column: 2 / 3;
    justify-self: center;
}

.logoLove img {
    height: 4rem;
}

.menu, .cerrarMenu {
    grid-column: 3 / 4;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-self: end;
}

.menu img, .cerrarMenu img {
    width: 3rem;
    cursor: pointer;
}

.menu span, .cerrarMenu span {
    color: var(--color-blanco);
    font-size: 2rem;
}

.opcionesMenu {
    width: 100%;
    height: 100%;
    color: var(--color-blanco);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.opcionesMenu h1 {
    position: relative;
    cursor: pointer;
}

.opcionesMenu h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: var(--color-blanco);
    transition: width 0.5s ease, left 0.5s ease;
}

.opcionesMenu h1:hover::after {
    width: 100%;
    left: 0;
}

footer {
    bottom: 0;
}

.contacto, .redes, .aviso {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    color: var(--color-blanco);
}

.redes img, .aviso img {
    width: 2rem;
}

.redes {
    justify-self: center;
}

.redes img {
    cursor: pointer;
}

.aviso {
    justify-self: end;
    color: var(--color-blanco);
}

.aviso img {
    cursor: pointer;
}

main {
    width: 100%;
    height: 100%;
}

.blurFondo {
    position: absolute;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(.9rem);
    background: 5px solid var(--blurFondo);
    transition: all 300ms ease-in;	
    z-index: 3;
}

.videoIndex video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

@media (max-width: 600px) {
    .opcionesMenu h1 {
        font-size: 1.5rem;
    }

    .menu span {
        display: none;
    }

    footer {
        grid-template-columns: 1fr;
        margin-bottom: 1.5rem;
        gap: .5rem;
    }

    .contacto {
        grid-row: 2 / 3;
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem;
    }

    .redes {
        grid-row: 1 / 2;
        justify-self: left;
    }

    .redes img {
        width: 1rem;
    }

    .aviso {
        grid-row: 3 / 4;
        justify-self: left;
    }

    .aviso img {
        width: 1rem;
    }
}

/* EFECTOS */
.oculto {
    display: none;
}

.opacidad0 {
    opacity: 0;
}

.opacidad1 {
    opacity: 1;
}