/* Ensure full-page transparency */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: transparent;
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Container styling */
.container {
    animation: fadeInZoom 1s ease-in-out;
}

/* Title styling */
h1 {
    font-size: 1.5rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

/* Image styling */
img {
    width: 550px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

img:hover {
    transform: scale(1.6);
}

/* Animation */
@keyframes fadeInZoom {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    h1 {
        font-size: 1.2rem;
    }

    img {
        width: 260px;
    }
}
