body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

h1 {
    color: #333;
    margin-bottom: 2rem;
    order: -1;
}

.container {
    display: flex;          
    flex-direction: column;
    align-items: center;  
    justify-content: center;
    position: relative;
    gap: 20px; 
}

button {
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    margin: 10px;
    transition: all 0.2s;
}

#yesBtn {
    background-color: #4CAF50;
    color: white;
    order: 0;
}

#yesBtn:hover {
    background-color: #45a049;
    transform: scale(1.1);
}

#noBtn {
    background-color: #f44336;
    color: white;
    order: 1;
}