html,
body {
    margin: 0;
    height: 100%;
    box-sizing: border-box;
}

body {
    background-color: #fff1d0ff;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    color: #fff1d0ff;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
}

.break {
    flex-basis: 100%;
    height: 0;
}

.content {
    padding: auto;
}

h1 {
    font-size: large;
}

.text_column {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

a {
    color: #fff1d0ff;
    margin-bottom: 10px;
    padding-bottom: 10px;
    cursor: pointer;
}

p {
    box-sizing: border-box;
    margin-bottom: 10px;
    /* padding-bottom: 10px; */
    padding-left: auto;
    align-items: center;
    width: 90%;
}

.fa:hover {
    opacity: 0.7;
    cursor: pointer;
}

.vinyl_link: {
    padding: 0;
    margin: 0;
}

.vinyl_link:hover {
    opacity: 0.7;
    color: fuchsia;
    cursor: pointer;
}

@media (orientation: landscape) {
    .bg-image-blur {
        margin: 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        image-orientation: from-image;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        z-index: -1;
        background-image: url(/images/BandBannerMed.webp);

        /* Add the blur effect */
        filter: blur(8px);
        -webkit-filter: blur(8px);

        /* Get rid of border caused by blur */
        transform: scale(1.03);
    }

    .bg-image {
        margin: 0;
        position: fixed;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        z-index: -1;
        background-image: url(/images/BandBannerMed.webp);
    }

    .album_art {
        object-fit: contain;
        height: 100%;
        max-height: 40svh;
        text-align: center;
    }

    .album_name {
        max-width: 30%;
    }

    .band_name {
        padding-top: 20px;
        width: 100%;
        text-align: center;
    }

    .band_name_img {
        width: 50%;
        text-align: center;
    }

}

@media (orientation: portrait) {
    .bg-image-blur {
        margin: 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        image-orientation: from-image;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        z-index: -1;
        background-image: url(/images/BandBannerMed.webp);


        /* Add the blur effect */
        filter: blur(8px);
        -webkit-filter: blur(8px);

        /* Get rid of border caused by blur */
        transform: scale(1.03);
    }

    .album_art {
        object-fit: contain;
        height: 100%;
        max-height: 50svh;
        text-align: center;
    }

    .bg-image {
        display: hidden;
    }

    .band_name {
        width: 100%;
        text-align: center;
    }

    .band_name_img {
        width: 90%;
        text-align: center;
    }

    .album_name {
        width: 90%;
        text-align: center;
        max-width: 40%;
    }

}

img.album_art:hover {
    opacity: 0.7;
    cursor: pointer;
}