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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: unset;
}

/*Header*/

header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
    background-color: red;
}

.logoAdidas,
.logoRiver {
    width: 50px;
}

.navBarHeader,
.navSocialMediaHeader {
    display: flex;
    gap: 20px;
}

.navSocialMediaHeader i {
    font-size: 20px;
}

/*Footer*/

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;

    box-shadow: -2px -2px 2px 1px rgba(0, 0, 0, 0.2);
    background-color: red;
}

footer div {
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    align-items: center;
}

footer p {
    text-align: center;
    background-color: #C4C4C4
}


/*estilos seccion noticias*/

section.noticias {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cartaNoticia {
    background-color: white;
    width: 250px;
}

.cartaNoticia:hover {
    color: red;
    cursor: pointer;
}

.cartaNoticia img {
    width: 250px;
}


/*MAIN*/
.ELpapuXD {
    background-image: url(https://www.cariverplate.com.ar/imagenes/banners/2023-05/182-header2023.jpg);
    background-repeat: no-repeat;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cuadradoRojo{
    height: 300px;
    width: 100%;
    background-color: red;
    bottom: 300px;
    opacity: 0;

}

.cuadradoRojo:hover{
    opacity: 0.2;
}