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

/********************Nav*********************/

  header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
    background-color: #e6e3e3; 
}

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

nav li {
    margin-right: 200px; 
    
}

nav a {
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    color: black;
}

.logo {
    max-height: 50px; 
}

@media only screen and (max-width: 920px) {
    nav ul {
        flex-direction: column; 
        align-items: center; 
    }

    nav li {
        margin-right: 0; /* Elimina el margen derecho */
        margin-bottom: 10px; 
        text-align: center; 
    }
}
/*****************Noticias*****************/

h1 {
    text-align: center;
    padding: 50px;
}

h2 {
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.pelicula img {
    max-height: 400px;
    padding: 20px;
}

h3 {
    padding: 20px;
}

article {
    font-weight: bold;
}

aside {
    text-align: center;
    padding: 4rem;
}

@media only screen and (max-width: 780px) {
    img {
        max-width: 80%;
    }
}


/*****************Footer**************/

footer {
    background-color:#e6e3e3 ;
    padding: 50px;
    display: flex;
    justify-content: space-around;
}

.redes {
    font-size: 2rem;
}

.redes a {
    margin-right: 20px; 
    color: black;
}






