html, body {
    height: 100%;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #FF7900 0%, #FFBF00 100%);
    margin: 0;
    color: #222;
    user-select: none;
}

body {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0;
}

#Titel {
    margin: 1% 2.5%;
    width: 95%;
    max-width: 600px;
    height: 80px;
    background: #FFBF00;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    cursor: default;
}

#Titel:hover {
    background-color: #FFD93B;
}

h1 {
    margin: 0;
    font-weight: 700;
    font-size: 2.2rem;
    color: #3a2f00;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.15);
}

p {
    margin: 0;
    padding: 0;
}

#buttons {
    width: 100%;
    max-width: 600px;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}

button {
    background-color: #FFE642;
    height: 50px;
    width: 35%;
    min-width: 180px;
    border-radius: 15px;
    border: none;
    font-weight: 600;
    font-size: 1.2rem;
    color: #4a4200;
    box-shadow: 0 5px 10px rgba(255, 214, 66, 0.6);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    user-select: none;
}

button:hover {
    background-color: #FFF87F;
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(255, 248, 127, 0.8);
}

button:active {
    transform: scale(0.95);
    box-shadow: 0 3px 7px rgba(255, 248, 127, 0.7);
}

@media (max-width: 600px) {
    #Titel {
        height: 60px;
        font-size: 1.6rem;
        width: 90%;
    }
    button {
        width: 70%;
        min-width: unset;
        font-size: 1rem;
        height: 45px;
    }
    #buttons {
        gap: 15px;
    }
}
