* {
    background-color: #ffffff;

    box-sizing: border-box;
}

html,
body,
.albumname {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
}


.startupimage {
    height: auto;
    width: 100%;
    align-items: center;
}

.albumname {
    font-family: copperplate;
    font-size: 6rem;
    text-align: center;
    vertical-align: middle;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;


    flex-wrap: wrap;

    border: 2px;
    border-color: black;
    border-style: solid;


}

/*
.outnow {
    font-family: copperplate;
    font-size: 4rem;
    text-align: center;
    vertical-align: middle;

    color: rgb(33, 157, 57);

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh
}

*/

.animatedGroup {
    animation: FadeInOut 3s ease-in-out;

    opacity: 0;

}


.outNow {
    padding: 5px;
    box-sizing: border-box;

    font-family: copperplate;
    font-size: 3rem;
    text-align: center;

    display: none;
    opacity: 0;

    letter-spacing: 3rem;

    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
}



.outNow.ready {

    display: flex;
    justify-content: center;
    align-items: center;
    animation: FadeIn 1.5s ease;
    opacity: 1;


}

.done {
    display: none;
}

/* Media query um zu skalieren */
@media (max-width: 768px) {
    .albumname {
        font-size: 3rem;
        /* Reduce font size for smaller screens */
    }
}


@keyframes FadeInOut {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes FadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}