/*transitions css*/

* {
    background-color: #979afb;
}

a:link {
    transition: color 1s;
}

img {
    opacity: 0.25;
    transition: opacity 0.5s;
    width: 20%

}

img:hover {
    opacity: 100%
}