body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    background-color: #ffe6f2;
    color: #ff4081;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    max-width: 500px;
    padding: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 24px;
}

.buttons {
    margin-top: 20px;
}

button {
    font-size: 18px;
    padding: 10px 20px;
    margin: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#yes-btn {
    background-color: #ff4081;
    color: white;
}

#no-btn {
    background-color: #ccc;
    color: black;
}

#no-btn:hover {
    position: absolute;
    left: calc(10% + 20px);
    top: calc(20% + 20px);
}

.hidden {
    display: none;
}

iframe {
    width: 100%;
    height: 400px;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}
