*{
    margin: 0 auto;
    text-decoration: thistle;
}

a{
   
    transition: color 0.5s;
    font-size: 1rem;
    color: brown;
    font-size: 1.5rem;
    font-weight: 100;
    
}

nav{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    
    margin-top: 10px;

}
p{
    font-size: larger;
    color: aqua;
}

.hope{
    display:block;
    width:100vw;
    height:100vh;

}

h3{
    font-size: 4rem;
    margin-bottom: 20px;
    font-family: "Irish Grover", serif;
    font-weight: 400;
     font-style: normal;
     color: aliceblue;
    
}

img{
    opacity: 0.20;
    transition: opacity 500ms;
}

img:hover{
    opacity: 1;
}

figure{
    position: relative;
}

figure img{
    position: absolute;
    top: 0;
    left: 0;
}
figure .img1{
    opacity: 1;
}

figure .img2{
    opacity: 0;
}

figure:hover .img2{
    opacity: 1;
}

figure:hover .img1{
    opacity: 0;
}