body {
    background-color: black;
    overflow: hidden;
    }

#fullscreen {
    width: 100%;
    height: 100%;

    padding-left: 10%;
    padding-right: 10%;
    padding-top: 5%;
    }

#container {
    width: 80%;
    text-align: center;

    background-color: lightgrey;
    border-radius: 20px;
    border: 3px solid;
    border-color: red;

    cursor: pointer;
    user-select: none;
    }

#song {
    display: block;
    font-size: 60;
    font-family: serif;
    font-style: bold;
    padding: 20;
    }

#album {
    display: block;
    font-size: 30;
    font-family: serif;
    font-style: italic;
    padding: 20;
    }

#history {
    margin-top: 3%;
    text-align: left;
    left: 10px;
    height: 55%;
    width: 80%;
    column-count: 3;
    column-fill: auto;
    /* overflow: scroll; */
    }

a.history-link:link, a.history-link:visited, a.history-link:active {
    color: #C9BE62;
    color: lightgrey;
    text-decoration: none;
    font-style: italic;
    }