body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff8dc;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

h1 {
    color: #ffcc00;
    font-family: 'Dancing Script', cursive;
    font-size: 3em;
    margin-bottom: 15px;
}

p {
    color: #555;
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.flowers {
    width: 100%;
    height: 250px;
    background: url('flowers.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.flower {
    position: absolute;
    top: -50px;
    font-size: 2.5em;
    color: #ffd700;
    animation: fall linear infinite;
    user-select: none;
}

@keyframes fall {
    to {
        transform: translateY(110vh);
    }
}

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.9em;
    color: #777;
}

footer a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffcc00;
    text-decoration: underline;
}
