/* styles.css */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color:  #111827;
    color: #fff;
    text-align: center;
}

.container {
    max-width: 800px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.content p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.animation img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 15px;
    animation: float 3s ease-in-out infinite;
}

/* Animation for floating effect */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

a {
    color: #ffdd57;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
