/* transitions.css*/

a:hover{
    color: rgb(236, 180, 217);
}
a:link{
    transition: color 0.5s;
}

img{
    opacity: 0.25;
    transition: opacity 500ms;
}

img:hover{
    opacity: 1;
}

figure #visible{
    position: absolute;
    opacity: 1;
}

figure #hidden{
    position: absolute;
    opacity: 0;
}

figure:hover #hidden{
    opacity: 1;
}

figure:hover #visible{
    opacity: 0;
}

footer{
    background-color:#9d88d2 ;
    text-align: center;
    padding: 15px;
    bottom: 0;
    position: fixed;
    width: 100%;
    justify-content: end;
    gap: 2.074rem;
} 
    
h1 {
    text-align: center;
    color: rgb(187, 49, 174);
    padding: 100;
    width: 400;
}

img {
    width: 600px;
}