/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f5f9ff; /* Soft blue background */
    color: #1a1a1a; /* Neutral dark text for readability */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

@keyframes fadeInSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeInSlideDown 1.5s ease-out; /* Adjust duration and easing as needed */
    opacity: 0; /* Initially hidden */
    animation-fill-mode: forwards; /* Ensure the final state persists */
    max-width: 650px; /* Reduced width for a smaller container */
    margin: 50px auto; /* Centered with some spacing from the top */
    padding: 50px;
    background-color: #ffffff; /* White content background */
    border: 2px solid #cce7ff; /* Soft blue border */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    line-height: 2;
}

/* Text Styling */
.container p {
    font-size: 1.1rem; /* Slightly larger than default for readability */
    color: #333333; /* Darker text for contrast */
    margin-bottom: 1em; /* Spacing between paragraphs */
    text-align: justify; /* Nice paragraph alignment */
}

/* Highlighted text */
.container p strong {
    color: #007acc; /* Bright soft blue for emphasis */
}

/* Header Styling */
.container h1 {
    font-size: 2rem;
    text-align: center;
    color: #005b99; /* Slightly darker soft blue */
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Light shadow effect */
}

/* Links */
.container a {
    color: #007acc; /* Matching soft blue for links */
    text-decoration: none;
    border-bottom: 1px dashed #007acc; /* Dashed underline */
    transition: color 0.3s, border-bottom-color 0.3s;
}

.container a:hover {
    color: #005b99; /* Darker blue on hover */
    border-bottom-color: #005b99;
}

/* Footer or End Note */
footer {
    text-align: center;
    margin-top: 50px;
    font-size: 0.9rem;
    color: #555555; /* Lighter gray text */
}
