body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f2f5;
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Marker Felt', sans-serif;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    transition: background-color 0.5s ease; 
    color: #333; 
}

.creepy-font {
    font-family: 'Creepster', cursive, 'Metal Mania', cursive, 'Nosifier', cursive, fantasy; 
}

h1 {
    color: #333;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

#question-yes { 
    color: #28a745; 
    cursor: pointer;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

#question-yes:hover {
    color: #1e7e34; 
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.button-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

button {
    padding: 20px 40px;
    font-size: 2em;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease, font-size 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    will-change: transform;
    font-family: inherit;
}

button:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}