/* Allgemeine Stildefinitionen */
* {
    box-sizing: border-box;
}

body {
    background-color: #ffe6e6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: sans-serif;
    text-align: center;
    padding: 1rem;
}

h1 {
    font-size: 6vw;
    margin-bottom: 5vh;
    color: #d40000;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

button {
    font-size: 5vw;
    padding: 1rem 2rem;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

#yes {
    background-color: #ff4d4d;
    color: white;
}

#maybe {
    background-color: #ff4d4d;
    color: white;
    position: relative;
}

#no {
    background-color: #ff4d4d;
    color: white;
}

button:hover {
    opacity: 0.9;
}
