html, body {
    height: 100%;
    margin: 0;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center-align items horizontally */
    justify-content: center;
}

a {
    color: cyan;
    text-decoration: none;
    display: inline-block;
    margin: 10px 0;
}

a:hover {
    text-decoration: underline;
}

.album-list {
    list-style-type: none;
    padding: 0;
}


.link-list {
    list-style-type: none;
    padding: 0;
    align-items: center;
}

    .link-list li {
        display: flex;
        flex-direction: column; /* Stacks items vertically */
        align-items: center; /* Center-aligns items horizontally */
        margin-bottom: 20px; /* Adjust the space between album entries */
    }


#blazor-error-ui {
    display: none;
}
.cover-image {
    width: 100%;
    object-fit: cover;
}
.cover-image {

    width: 100%;
    height: auto; /* Same as the container height */
}

.link-tree {
    display: block;
}

.album-list li {
    display: flex;
    flex-direction: column; /* Stacks items vertically */
    align-items: center; /* Center-aligns items horizontally */
    margin-bottom: 20px; /* Adjust the space between album entries */
}

.album-cover {
    width: 300px; /* Adjust based on your preference */
    height: 300px; /* Adjust to maintain aspect ratio */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    margin-bottom: 10px; /* Space between image and text */
}