html
    {
        scroll-behavior: smooth;
    }

body
    {
        background-color: #000000;
        width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Faculty Glyphic", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

/* MENÚ FIJO */
    .fijo
    {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: black;
        padding-top: 15px;
        padding-bottom: 10px;
        z-index: 100;
    }

/* ANCLAS */
    .menu-link 
    {
        font-size: 30px;
        color: #ffffff;
        text-decoration: dotted;
        transition: 0.5s ease;
    }
    .menu-link:hover
    {
        color: #ac1919;
        font-size: 35px;
        transition: 0.5s;
    }

/* CONTENEDOR VIDEOS MENENDEZ */
    .container
    {
        max-width: 800px;
        margin: 0%;
    }
    
   .group
    {
        display: flex;
        justify-content: space-between;
        margin-bottom: 50px;
    }

    .espaciado_group
    {
        display: flex;
            margin-bottom: 20px;
    }

/* B&W */
    .blacknwhite
    {
        filter: grayscale(100%) contrast(100%);
    }

/*EFECTO CARRUSEL*/
.carrusel
{
    width: 100%;
    height: 700px;

    margin-top: 50px;

    overflow: hidden;
}

.carrusel ul
{
    display: flex;

    width: 300%;

    padding: 0;

    animation: slide 16s infinite alternate ease-in-out;
}

.carrusel li
{
    width: 100%;
    list-style: none;
}

.carrusel img
{
    width: 100%;
}

@keyframes slide
{
    0% { margin-left: 0%; }
    30% { margin-left: 0%; }

    35% { margin-left: -100%; }
    65% { margin-left: -100%; }

    70% { margin-left: -200%; }
    100% { margin-left: -200%; }
}

/*EFECTO SUBTITULOS*/
    .Subtitulos
    {
        color: white;
        font-size: 30px;
        font-weight: bold;
        text-align: center;
        margin-top: 50px;
        margin-bottom: 40px;
    }

/*EFECTO POSTERS*/
    .poster
    {
        display: flex;
        justify-content: center;
        gap: 30px;
        text-align: center;
    }

/*EFECTO CONTENEDOR*/
    .contenedor
    {
        width: 300px;
        color: white;
    }

/*EFECTO TEXTO*/
    .textonumeros
    {
        position: relative;
        top: -15px;
        font-size: 16px;
        font-weight: 300;
    }

/*EFECTO BOTÓN*/
    .button
    {
        width: 150px;
        padding: 10px 20px;
        border: none;
        border-radius: 50px;
        background-color: darkred;
        color: white;
        font-size: 16px;
        font-weight: 600;
        transition: 0.5s;
    }

    .button:hover
    {
        background-color: #4e0000;
    }


/*EFECTO POSTER*/
    .poster img
    {
        transition: 0.5s;
    }

    .poster img:hover
    {
        filter: blur(10px);
    }

