body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    /* margin-top: 10%; */
    background-color: #ffffff;
    /* make background full screen with and height */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    
    
}

.title {
    color: #000000;
    /* Pink color for the title */
    font-size: 28px;
    /* Slightly bigger font */
    font-weight: bold;
    margin-bottom: 20px;
}

.image {
    width: 90%;
    margin-top: 20px;
    max-width: 500px;
    /* Limit the image width on large screens */
    height: auto;
    border-radius: 15px;
    border: 5px solid #d8aeb3;
    /* Soft pink border around the image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Add a cute shadow */
}

/* Desktop styles */
@media (min-width: 768px) {
    .image {
        width: 40%;
        max-width: 600px;
    }
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center align content */
}

.footer {
    margin: 20px 0 0 0;
    padding: 0;
    font-weight: bold;
    color: #000000;
    /* Pink color for the footer */
    font-size: 14px;
    background-color: #ffffff;
    /* Smaller font */
}

h1 {
    animation: fadeIn 1s ease-in-out;
    /* Add fade-in animation */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
