

/* Content */
.content {
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeIn 1.5s ease-in-out; /* Fade in animation */
    max-width: 600px; /* Limit max width for better readability */
    overflow: hidden; /* Hide overflow for smooth edges */
    margin-top: 80px; /* Space for header */
    margin-bottom: 80px; /* Space for footer */
}

.logo-img {
    max-height: 60px; /* Adjust this value to fit your design */
    width: auto; /* Keep the aspect ratio */
    display: block; /* Ensure it takes up space */
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333; /* Dark color for header */
}

p {
    font-size: 1.2rem;
    color: #555; /* Dark color for text */
    line-height: 1.5;
    margin-bottom: 1rem;
}


/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intro Section */
.intro-section {
    position: relative; /* Relative position for content */
    display: flex; /* Flex layout for section */
    align-items: center; /* Center items */
    justify-content: center; /* Center items */
    height: 80vh; /* Height for section */
    overflow: hidden; /* Hide overflow */
}
