body{
    background-color:whitesmoke;
    font-family: Arial, Helvetica, sans-serif;
    margin:10px;
    padding: 0;
    font-size: 20px;

}
header {
    background-color: #4a90e2;
    color: white;
    padding: 40px 20px; 
    text-align: center;
           
}
.presentacion {
  display: flex;          
  align-items: center;   
  margin-top: 1.5rem; 
  gap:40px;
  flex-direction: row;
}
.presentacion img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    object-fit: cover;
}



nav{
    background-color: blue;
    padding: 15px 0;
    text-align: center;
}

nav a{
    color:white;
    margin: 0 20px;
    font-size: 25px;
    font-weight: bold;
}

nav a:hover{
    color:black;

}

main{
    padding: 20px;
    max-width: 1200px;
    margin:auto;
}

.contenedor-gustos{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.gusto{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
    text-align: center;
    background:whitesmoke;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
    
}
.gusto img{
    
    border-radius: 8px;
    margin-bottom: 10px;

}
.gusto p {
    max-width: auto;
    margin: 10  ;
}

.contenedor-academico{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.academico{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
    text-align: center;
    background:whitesmoke;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
}

.academico img{
    
    border-radius: 8px;
    margin-bottom: 10px;
}

.academico p {
    max-width: auto;
    margin: 10  ;
}
