body {
    background-color: #000000;
    background-image: url('/assets/images/black_bg.jpg');
    background-repeat: repeat;
    background-position: center;

    font-family: Tahoma;
}

#page {
    background-image: url('/assets/images/album_cover_full.avif');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    position:fixed;
    width:100%;
    height:100%;
    top:0;
    left:0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    gap: 1em;
}
@media only screen and (max-width: 1280px) {
    #page {
        background-image: url('/assets/images/album_cover_1280.avif');
        background-position: top;
    }
}
@media only screen and (max-width: 1024px) {
    #page {
        background-image: url('/assets/images/album_cover_1024.avif');
        background-position: top right;
    }
}
@media only screen and (max-width: 768px) {
    #page {
        background-image: url('/assets/images/album_cover_768.avif');
        background-position: top right;
    }
}
@media only screen and (max-width: 710px) {
    #page {
        background-image: url('/assets/images/album_cover_768_cropped.avif');
        background-position: top right;
    }
}
@media only screen and (max-width: 600px) {
    #page {
        background-image: url('/assets/images/album_cover_600_cropped.avif');
        background-position: top right;
    }
}
@media only screen and (max-width: 480px) {
    #page {
        background-image: url('/assets/images/album_cover_480_cropped.avif');
        background-position: top right;
    }
}

#title {
    font-size: 1.2em;
    color: lightgrey;
    margin: 1em 0 0 2em;
}
#title h1 {
    margin: 0;
}
#title a {
    color: lightgrey;
}
ul#links {
    list-style-type: none;
}
ul#links li {
    margin-bottom: 1em;
}
ul#links li a {
    color: lightgrey;
}

div#sidebar {
    min-width: 200px;
}

div#message {
    background-color: lightgrey;
    color: black;
    padding: 1em;
    margin: 2em;
    flex-grow: 3;
    min-height: 500px;
    max-width: 500px;
}