@import url('https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&display=swap');

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fce4ec;
    margin: 0;
    font-family: 'Nanum Pen Script', cursive;
}

.container {
    text-align: center;
    position: relative; /* Set positioning context for absolute children */
}

.profile-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 5px solid white;
    margin-bottom: 20px;
    object-fit: cover;
}

h1 {
    font-size: 4rem;
    color: #c2185b;
}

.buttons {
    margin-top: 20px;
    /* Removed flexbox to simplify positioning */
}

button {
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Nanum Pen Script', cursive;
}

#yes-button {
    background-color: #ff80ab;
    color: white;
    padding: 15px 30px;
    font-size: 2rem;
    margin: 0 10px;
}

#no-button-wrapper {
    position: absolute; /* This wrapper will be moved by JS */
    padding: 20px;
}

#no-button {
    background-color: #f06292;
    color: white;
    padding: 10px 20px;
    font-size: 1.5rem;
}
