body {
    background-color: black;
    color: ghostwhite;
    font-family: sans-serif;
    font-size: 1.2em;
}

div.content {
    /* center horizontally and vertically using transform */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

div.content h1 {
    width: 70%;
    height: 70%;

    animation: sizing 60s linear infinite;

}


@keyframes sizing {
    0% {
        font-size: 5em;
    }
    50% {
        font-size: 2em;
    }
    100% {
        font-size: 5em;
    }
}

footer {
    /* align bottom */
    position: fixed;
    bottom: 0;
    width: 100%;
    opacity: 0.5;

}

footer #songsLink {
    text-decoration: none;
    color: ghostwhite;
    font-size: 1.2em;
    font-family: sans-serif;

    /* go to the right */
    float: right;
    margin: 10px;
    margin-right: 15px;
}