body {
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: pink;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
    width: 300px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.question {
    font-size: 24px;
    font-weight: bold;
}
.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    width: 100%;
    height: 50px;
}
.btn {
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s;
    position: absolute;
}
.btn:active {
    transform: scale(0.95);
}
.yes {
    background-color: red;
    color: white;
    left: 20%;
}
.no {
    background-color: white;
    color: red;
    left: 60%;
    border-color: red;
    border:1px solid;
}
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    max-width: 80%;
    text-align: center;
}
.modal img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
}
@media (max-width: 600px) {
    .question {
        font-size: 20px;
    }
    .btn {
        font-size: 16px;
        padding: 8px 16px;
    }
}