*{
   margin: 0;
   padding: 0; 
}

body{
    background-color: white;
    font-family: 'Inter', sans-serif;
    line-height: 2;
}

h1, h2{
    color: #c4001a !important; 
}

nav{ 
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: space-between;
  padding-left: 2%;

  .navegacion{
    list-style-type: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
    }

    hr{
        color: solid #e0e0e0;
    }

    li{
       text-decoration: none;
       font-weight: 600;
       color: black;
    }
}

h1{
       text-decoration: none;
       font-weight: 600;
       color: #c4001a; 
}

.logo{
    padding-right: 3%;
}

.principal{
    background-color: #f5f5f5;
    border-radius: 20px;
    width: 70%;
    margin: 20px auto;
    padding: 20px;
    text-align: center;

    .textBienvenida{
       color: #c4001a; 
       font-weight: bold; 
       font-size: 30px;

    }

    p{
        margin-top: 10px;
        font-size: 20px;
        color: black;
        line-height: 1;
    }  
}

.noticiaPrincipal img{
    width: 30%;
    height: 30%;
    border-radius: 20px;
    
}

.seccionPrincipal{
    padding-left: 2%; 
    display: flex;
    align-items: flex-start;
    gap: 40px;

    .contenido1{
        display: flex;
        flex-direction: column;
        width: 50%;
    }
}

.seccion{
    padding-left: 2%; 
    font-size: 25px;
    font-weight: bold;
    color: #c4001a;
    border-left: 4px solid #c4001a;
}

.ultimasNoticias{
    margin-top: 50px;
    padding-left: 2%; 
    padding-right: 2%; 
    display: flex;
    gap: 35px;

    img{
        width: 100%;
        height: 48%;
    }
}

.noticia {
  width: 25%;
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 20px;
  text-align: center;
}

footer {
  background-color: #c4001a;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}