body{
    overflow: hidden;
    background-color: #000000;
    font-family:Arial, Helvetica, sans-serif;
}

button {
    background-color: transparent;
    color: #000000;
    border: none;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    overflow: hidden; 
}

.serviceButtons button{
    display: block;
    background-color: #000000e2;
    border-radius: 10px;
    border: 100px #cccccc;
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    height: 40px;
    width: 250px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 10px;
    transition: background-color 0.3s ease;

}

.space {
    height: 53vh;
}

#play-button-area {
    background-color: #000000e2;
    position: fixed; /* Ensure it covers the entire viewport */
    color: #fff;
    cursor: pointer;
    border: none;
    

    /* Fullscreen */
    width: 100%;
    z-index: 1000; 
    height: 100%;
    overflow: hidden; 
}

h2 {
    text-align: center;
}

.nummer {
    border: 2px solid rgb(255, 255, 255); 
    border-radius: 50%;
    display: inline-block;
    width: 2em; 
    height: 2em; 
    line-height: 2em; 
    margin-bottom: 5px;
    text-align: center;
}

@keyframes buttonClickAnimation {
    0% {
        box-shadow: 0 0 15px 15px rgba(0, 0, 255, 0);
        border-radius: 50px; /* Rundet den animierten Rahmen */
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        border-radius: 50px; /* Rundet den animierten Rahmen */
    }
}

.animate {
    animation: buttonClickAnimation 1.5s forwards;
}


/* Stil während des Hover-Effekts 
.serviceButtons button:hover {
    background-color: rgb(139, 111, 0);
}*/

/* Stil während des Klickens */
.serviceButtons button:active {
    animation: clickAnimation 0.5s forwards;
}

/* Keyframes für die Klick-Animation */
@keyframes clickAnimation {
    0% {
        background-color: #65B7B8;
    }
    100% {
        background-color: #000000e2;
    }
}
