body {
    background-color: black;
    color: white;
}

img {
    height: 100px;
    filter: saturate(0);
}

img:hover {
    filter: saturate(5);
    cursor: pointer;
}

#space {
    position: absolute;
    top: 50%;
    left: 300px;
    transform: translateY(-50%);
}

#story {
    position: absolute;
    top: 50%;
    left: 600px;
    transform: translateY(-50%);
    width: 300px;
    font-size: 24pt;
}

a {
    color: blueviolet;
    text-decoration: none;
}

.link {
    display: inline-block;
}

.link:hover {
    transform: rotate(10deg);
}