body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f3f3f3;
}

.container {
    text-align: center;
}

img {
    max-width: 100%;
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

button {
    padding: 10px 20px;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#yesButton {
    background-color: #4CAF50;
    color: white;
}

#yesButton:hover {
    background-color: #45a049;
}

#noButton {
    background-color: #f44336;
    color: white;
    position: relative;
}

#noButton:hover {
    animation: moveButton 0.3s forwards;
}

@keyframes moveButton {
    0% { transform: translateX(0); }
    25% { transform: translateX(-50px); }
    50% { transform: translateX(50px); }
    75% { transform: translateX(-30px); }
    100% { transform: translateX(30px); }
}
