body {
    background-color: #ffe6f2;
    letter-spacing: 1.5px;
    text-align: center;
    font-family: 'Pacifico', cursive;
    height: 100vh;
    overflow: hidden;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.heart {
    position: absolute;
    width: 50px;
    height: 50px;
    animation: heartAnimation 3s ease infinite;
}

@keyframes heartAnimation {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1em;
}

h1 {
    font-size: 2.5em;
    color: #ff3366;
    font-weight: 700;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ff3366, #ff6699);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

#content {
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
}

h2 {
    font-size: 1.8em;
    color: #ff3366;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);

}

#letter{
    display: none;
    font-family: 'Dancing Script', serif;
    font-size: 1.5em;
    letter-spacing: 1.5px;
    color: #ff3366;
    margin-top: 20%;
    font-weight: bold;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
    text-align: left;
    padding-bottom: 40px;
}

button {
    font-family: 'Pacifico', cursive;
    font-size: 1.2em;
    padding: 10px 20px;
    background-color: #ff3366;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

button:hover {
    background-color: #ff6699;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

button:focus {
    outline: none;
}

#answer {
    display: flex;
    justify-content: center;
    gap: 10px;
}