body {
    font-family: 'Garamond', serif;
    background-color: #f8f8f8;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.container:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

header {
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    border-radius: 8px 8px 0 0;
}

header h1 {
    font-size: 24px;
    margin: 0;
}

header p {
    font-size: 14px;
    margin-top: 10px;
}

main {
    margin-top: 20px;
}

.affirmation-container {
    text-align: center;
}

#affirmationText {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    font-style: italic;
}

button {
    padding: 14px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    background-color: #27ae60;
    color: #ffffff;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
    background-color: #219653;
}

/* Animation for the button click */
button:active {
    transform: translateY(2px);
}

/* Animation for the affirmation text */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
