body,html{
    margin:0;
    padding:0;
    width:100%;
    height:100vh;
    font-family: sans-serif;
}




.Setion_top{
    width:100%;
    height:100%; 
    overflow:hidden;
    position:relative;
    background-image: url('https://omnitodo.com/paisajes/cinezaso.jpg');
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
    text-align:center;
    justify-content:center;
    animation: change 20s infinite ease-in-out;
}

.content{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    color:white;
}

.content a{
    background: #B5c1ee;
    padding:5px 5px;
    text-decoration:none;
    font-size:18px;
    border-radius:20px;
    
}

.content a:hover{
    background:#034e88;
    color:#ffffff;
    
}

.Setion_top #discord a img{
   width:100px;
  
}
.Setion_top #discord{
    position:absolute;
    bottom:0;
}


/*barradenavegador*/
header {
    background-color: rgba(0, 0, 0, 0.7); /* Fondo semitransparente para el header */
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Estilos para hacerlo flexible en móviles */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Oculta la navegación en pantallas pequeñas */
        flex-direction: column;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px; /* Ajusta según la altura de tu header */
        left: 0;
        z-index: 10; /* Asegura que esté por encima de otros elementos */
    }

    nav ul.active {
        display: flex; /* Muestra la navegación cuando la clase 'active' está presente */
    }

    nav ul li {
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    .logo {
        font-size: 1.2em;
    }

    /* Podemos agregar un icono de "hamburguesa" para mostrar/ocultar el menú */
    header {
        position: relative; /* Necesario para posicionar el botón absoluto */
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
        color: white;
        font-size: 1.5em;
        cursor: pointer;
    }

    /* Ocultamos el icono por defecto en pantallas grandes */
    @media (min-width: 769px) {
        .menu-toggle {
            display: none;
        }
    }
}
/*barradenavegador*/



@keyframes change{
    0%
    
    background-image: url('https://omnitodo.com/paisajes/covencionbb.jpg');
    
}

@keyframes change{
   10%
    
    background-image: url('https://omnitodo.com/paisajes/gymnasio.jpg');
    
}