*{
    margin: 0%;
    padding: 0%;
}

body{
    background-color: rgb(189, 236, 220);
}

.nav{
    
    background-color: rgb(2, 6, 5);
    
}



.titulo{
  font-weight: bolder;
  font-style: italic;
  display: flex;
  justify-content: center;
  font-size: 70px;
  padding: 10px;
  background-color: rgb(29, 169, 122);
}
    
.lista{
    display: flex;
    flex-direction: row;
    list-style-type: none;
    padding: 10px;
    text-decoration: none;
    justify-content: space-between;
   
}

.li a{
    display: flex;
    flex-direction: row;
    list-style-type: none;
    padding: 10px;
    text-decoration: none;
    color: black;
    background-color: rgb(29, 169, 122);
    font-weight: bolder;
    font-family: sans-serif;
    border: 2px solid rgb(53, 218, 53);
}

.li a:hover{
    background-color: rgb(180, 220, 180);
    transform: translateY(-5px); /* Desplaza el elemento hacia arriba */
    box-shadow: 0px 5px 10px rgba(0,0,0,0.2); /* Añade una sombra */
}

.main{
     display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin: 15px;
    font-family: sans-serif;
    border: 3px, solid black;
    background-color: rgb(112, 182, 158);
}

.main:hover{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin: 15px;
    font-family: sans-serif;
    border: 3px, solid black;
    transform: translateY(-5px);
    box-shadow: 0px 5px 10px rgba(0,0,0,0.2)

}

.articulo{
    margin: 5px;

}

.subtitulo{
   
padding: 5px;

}

p{
    font-family: Arial, Helvetica, sans-serif;
    margin: 5px;
    font-weight: bold;
    padding: 3px;
}

img{
  border: 2px solid black;
  border-radius: 10px;
  width: 300px;
  height: auto;
  object-fit: cover;
  margin-left: 550px;
  display: flex;
  position: relative;
  
}

img:hover{
  filter: grayscale(80%);
}

.presentacion{
    text-decoration: underline;
}

.sobremi{
    text-decoration: underline;
    margin: 5px;
}


.Estudio{

    text-decoration: underline;
     margin: 5px;
}

footer{
    float: left;
    width: 100%;
    background-color: rgb(6, 10, 9);
    color: rgb(81, 191, 154);
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
}

section{
    scroll-behavior: smooth;
}


    



