body {
    background-color: #2c2f33;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.button-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}

.button {
    background-color: purple;
    color: white;
    padding: 30px 60px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.8);
    cursor: pointer;
    font-size: 27px;
    text-decoration: none; /* Entfernt die Textdekoration (Unterstrich) */
    display: inline-block; /* Hinzugefügt, um den Link wie einen Inline-Block anzuzeigen */
    font-family: sans-serif;
}

.button-text {
    color: white;
    font-size: 18px;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-family: sans-serif;
    font-size: 25px;
}
