body {
    background-color: black;

}


img {
    width: 70vw;
    top: 50%;
    position: fixed;
    transform: translateY(-50%);
    transition: transform .5s ease-in-out, padding-bottom .5s ease-in-out;
    text-align: center;
    left: 15vw;

}

img:hover {
    transition: transform .5s ease-in-out, padding-bottom .5s ease-in-out;
    transform: translateY(-60%);
    padding-bottom: 5%;
}
a {
    color: white;
    font-family: serif;
    text-decoration: none;
}
a:visited {
    color: inherit;
}
.links {
    display: flex;
    width: 60vw;
    justify-content: space-between;
    margin-left: 20vw;
    font-size: 3vw;
    position: fixed;
    bottom: 30%;
    z-index: -1;
    opacity: 0;
    transition: opacity .5s ease-in-out;
    color: white;
}
img:hover ~ .links {
    opacity: 1;
    color: white;
    transform: translateY(+20%);
    transition: opacity .5s ease-in-out, transform .5s ease-in-out;
}
img ~ .links {
    transform: translateY(-50%);
    transition: opacity .5s ease-in-out, transform .5s ease-in-out;
}