body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #ffe6e6;
}

.container {
    margin-top: 50px;
    position: relative;
}

.photo {
    width: 80%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.envelope {
    font-size: 60px;
    cursor: pointer;
    margin-top: 20px;
}

.question-box {
    display: none;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    margin: 20px auto;
    width: 300px;
    position: relative;
}

.question-text {
    font-size: 22px;
    font-weight: bold;
    color: #d40000;
}

.buttons {
    margin-top: 20px;
}

button {
    font-size: 20px;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    border-radius: 10px;
    border: none;
}

#yes {
    background-color: #ff4d4d;
    color: white;
}

#no {
    background-color: #cccccc;
    position: absolute;
}

.gif-box {
    display: none;
    margin-top: 20px;
}

.gif-box img {
    width: 200px;
    border-radius: 10px;
}