body{ 
    background-color: bisque;
    height: 100%;
    width: 100%; 

}
header{ 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bolder;
}
/* A todos los h1 les sume background*/ 
h1{ 
    background-color: rgb(241, 147, 113);
    text-align: center;
    text-decoration: underline black;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}
h2{ 
    
    text-align: right; 
    margin-right: 30%;
    text-decoration: double underline black;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}
p{ 
    text-align: justify; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-left: 3%;
    margin-right: 3%;
    margin-top: 2%;
    margin-bottom: 2%;
    
}
div{ 
    text-align: center;
}
img{ padding-top: 10px;
    
    }
/* luego en los bloques, les sume distintos backgrounds, del mismo tipo "pastel" pero distintos colores*/ 
a{
    color: unset;
 }
#Presentación { background-color: rgb(253, 196, 255);
}
#illia { background-color: rgba(196, 255, 221, 0.87);
}
#datos { background-color: rgb(255, 200, 196);
}
#futuro { background-color: rgb(200, 196, 255);
}
#links { 
    background-color: rgb(240, 177, 155); ;
    display: flex; 
justify-content: space-evenly;
color: black;
font-size: 25px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* Cree y edite la galeria de imagenes de la seccion "Mi paso por el Illia" intentando que se puedan
ver bien las imagenes (que no se encuentren distorcionadas) y esten ordenadas*/ 
.galeria{ 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;    
}
.galeria h1{
    text-align: center;
    margin: 20px 0 15px 0;
    font-weight: 300;

}

.contenedor-imagenes{ 
    display: flex;
    width: 85%;
    margin: auto;
    justify-content: space-around;
    flex-wrap: wrap;
    border-radius: 3px;
}
.contenedor-imagenes .imagen{
    width: 32%;
    position: relative;
    height: 250px;
    margin-bottom: 5px;
    box-shadow: turquoise;
}
.imagen img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#fotofuturo{ 
    margin-left: 400px;
}
/** Corregi la ultima imagen porque habia quedado desordenada, no pude lograr ponerla mas cerca del texto**/ 