* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background-color: #fee122   ; /* Cambia el color de resaltado a amarillo */
    color: #000000; /* Cambia el color del texto seleccionado */
}

body{
    font-family: "Montserrat", sans-serif;
    background-color: #ffffff;
    color: #000000;
}

.portal{
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 10px;
    padding: 21px;
}

.big-articulos{
    background-color: #eeeeee; 
    box-shadow: 0 0 5px rgba(136, 136, 136, 0.5);
    
}


.big-articulos h1{
    padding: 20px 0px 0px 20px;
    text-transform: uppercase;
    color:#444444;
    font-weight: 400;
    font-size: 20px;
}

.articulos{
   
    padding: 20px;
    max-width: 800px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid rgba(73, 73, 73, 0.219);
}

.articulo-informacion a {
   
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    width: 80%; /* Ajusta el ancho según sea necesario */
    display: inline-block; /* Asegura que el ancho se aplique correctamente */
    padding-bottom: 20px;
    
}

.articulos a:hover{
    color: #444444;
}

.articulos p{
    width: 80%;
}

.articulos img{
   width: 150px;
   border-radius: 10px;
}


.barra-lateral{
    background-color: #eeeeee; 
    box-shadow: 0 0 5px rgba(136, 136, 136, 0.5);
    max-width: 400px;
   
    
}

.barra-lateral h3{
    padding: 20px 20px 0px 20px;
    text-align: center;
    color:#444444;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: -1px;
    font-weight: 500;
}



@media (max-width: 1000px){
    .barra-lateral{
        display: none;
    }

}

@media (max-width: 600px){
    .articulos{
        flex-direction: column;
    }

    .articulos img{
        margin-top: 20px;
    }
    
    .articulos a,
    .articulos p{
        width: 100%;
    }
}