.player h1, .player h2
{
    text-align: center;
    margin: 10px 0px;
}

.titleinformation span
{
    text-align: center;
    display: block;
}

.titleinformation .albumart img
{
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.titleinformation .artist
{
    font-size: 26px;
    font-weight: bolder;
    text-transform: uppercase;
}

.titleinformation .title
{
    font-size: 22px;
    font-weight: lighter;
}

.titleinformation .artist, .titleinformation .title
{
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

div.player
{
    text-align: center;
    margin: 15px auto;
}

body
{
    background: #02193D;
    color: white;
    font-family: "Raleway", sans-serif;
    margin: 0px;
    padding: 0px 0px 30px 0px;
    cursor: default;
}

#background
{
    position: fixed;
    z-index: 100;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity .5s, transform 1s;
    transform: scale(1,1);
}

    .zonehover #background
    {
        opacity: 1;
        transform: scale(1.2,1.2);
        transition: opacity .5s, transform 16s;
    }


#foreground
{
    position: relative;
    z-index: 1000;

}

