/* styles.css */
body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    overflow: hidden;
}

.container {
    text-align: center;
}

h1 {
    color: #333;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

p {
    color: #555;
    font-size: 18px;
    line-height: 1.5;
}

.buttons {
    display: flex;
    justify-content: center;
}

.button {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    background-color: #007bff;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #0056b3;
}

.petal {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: fall linear infinite;
}

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