/* Reset and basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f8f9fa; /* Light grey background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #333;
}

.container {
    padding: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.main-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    /* Optional: subtle floating effect */
    animation: float 4s ease-in-out infinite;
}

h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    color: #666;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
	100% { transform: translateY(0px); }
}