body {
    margin: auto;
    width: 50vw;
    padding: 2vw;
    text-align: center;
    color: white;
    background-image:url(../img/5.gif) ;
}
img {
    height: 30vh;
    transition: 0.5 ease-in-out;
}
img:hover{
    height: 35vh;
    transform: scale(1.2);
    box-shadow: 0 0 50px greenyellow;
}
a {
    display: inline-flex;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    color: white;
    background-color: blue;
    transition: 0.25s ease-in-out;
}
a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px orangered;
    background-color:green;
}
#info{
    background-color: blueviolet;
}
