body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #f8e9f2;
}

.card {
    background-color: #fff0f6;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    font-size: 2em;
    color: #d47fa6;
}

p {
    font-size: 1.2em;
    color: #c36f96;
}

.button-cute-pink {
    background-color: #c36f96;
    border: none;
    border-radius: 12px;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Georgia', serif;
    transition: background-color 0.3s;
}

.button-cute-pink:hover {
    background-color: #ff99e6;
}