#bg {
    background-size: cover;
    aspect-ratio: 1/1;
    background-repeat: no-repeat;
    background-position: 50% 60%;
    height:vh;
    height:100dvh;
    width: 100%;
    display: flex;
    flex-grow: 1;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    align-content: start;
}

.spacer {
    flex-grow: 1;
}

#description {
    flex-grow: 0;
    margin-right: auto;
    margin-left: 1vw;
    width: clamp(40vw, 40vw, 100vw);
    height: auto;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.9);

    font-weight: 100;
    padding: 2vh 1vw;
    visibility: hidden;
}

#albumDescription {
    font-size: 20pt;
    color: #302e2e;
    visibility: hidden;
    line-height: 1.3;
}


.dashboard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding-left: 1vw;
}

.dashboard span {
    font-size: clamp(3vw, 3.2vw, 3.5vw);
    text-shadow: #727272 1px 1px 1px;
}

.dashboard button {
    /* font-size: clamp(1.5vw, 2.6vw, 1.75vw);
    text-shadow: #727272 2px 2px 3px; */
    /* margin: 0 .25vw .25vw 0; */
}

#BUTTONnextPhoto,
#BUTTONnextAlbum {
}

#BUTTONnextPhoto:disabled,
#BUTTONnextAlbum:disabled {
    background-color: rgba(255, 255, 255, 0.8);
}

#BUTTONnextPhoto {
    width: 3.5vw;
    height: 3.5vw;
    background-image: url(./svg/arrow-open-right-svgrepo-com.svg);
}

#BUTTONnextAlbum {
    width: 3.5vw;
    height: 3.5vw;
    background-image: url(./svg/arrow-open-right-end-svgrepo-com.svg);
}


button {

    cursor: pointer;
    color: #fff;
    border: 0;
    background-color: rgba(10, 10, 10, 0.2);
    border-radius: 3px;

    background-repeat: no-repeat;
    border: 8px solid transparent;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

button:hover {
}

#info {
    width: 3.5vw;
    height: 3.5vw;
    background-image: url(./svg/info-circle-svgrepo-com.svg);
}

#scrolldown {
    width: 3.5vw;
    height: 3.5vw;
    background-color: transparent;
    background-image: url(./svg/arrow-down-svgrepo-com.svg);
    box-shadow: none;
    border: none;
}


#scrolldown:hover {
}

.buttons{
    padding: 0 1vw 1vh;
}



@media screen and (max-width: 1400px) {
    #bg {

    }

    #description,
    #info,
    .titles {
        display: none;
    }

    .buttons {
        padding: 0;
        display: flex;
        width: 100%;
        margin-right: 0;
    }

    button {
        flex: 1;
        border-radius: 0;
    }

    button:hover,
    button:active {
    }

    .dashboard {
        padding: 0;
    }

    .dashboard span,
    .dashboard button {
        font-size: clamp(6vw, 6.2vw, 6.5vw);
        text-shadow: #333 1px 1px 3px;
    }


    #scrolldown,
    #BUTTONnextPhoto,
    #BUTTONnextAlbum {
        height: 14vw;
        margin: 0;
        padding: 0;
    }

}

@media only screen and (max-width: 1400px) and (orientation: landscape) {
    #scrolldown,
    #BUTTONnextPhoto,
    #BUTTONnextAlbum {
        height: 10vw;
        margin: 0;
        padding: 0;
    }
}

.bounce-button {
    /* padding: 10px 20px; */
    /* font-size: 16px;
    color: white;
    border: none;
    cursor: pointer; */
    animation: bounce 0.5s infinite alternate;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-7px);
    }
}