
*{
    box-sizing: border-box;
}

body{
    background-image: url("../img/fondo_einstein.jpg");
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

h1{
    background-image: url("../img/titulo.jpg");
    color: white;
    text-align: center;
    width: 100%;

}
p{
    width: 100%;
    background-color: white;
    font-size: 1,2em;
    text-align: justify;
    padding: 10px;
    text-indent: 50px;
}
img{
    width: 20%;
    margin: 10px auto;
    border: 10px solid grey; 
}
/*
p:nth-child(4), p:nth-child(6){
    background-color: pink;

}
*/


p:first-of-type{
    background-color: pink;


}
p:nth-of-type(){
    background-color: green;
    

}
p:last-of-type{
    background-color:rgb(69, 162, 190);
    

}
img[alt="einstein2"]{
    transition: 3s;
}
img[alt="einstein2"]:hover{
    border: 40px solid red;
    border-radius: 50px;
    transition: 3s;
}