/* Define the fade-in animation */
@keyframes fade-in-animation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Apply the animation to elements with the "fade-in" class */
.fade-in {
    animation: fade-in-animation 1s ease-in-out;
}

/* Reset some default styles for consistency */
body, ul, li {
    margin: 0;
    padding: 0;
}

/* Body styling */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: black;
    color: white;
    margin: 0;
    padding: 30px;
}

/* Header styling */
header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
}

/* Navigation styling */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #444;
    padding: 0.5rem;
}

nav li {
    margin: 0 1rem;
}

nav a {
    text-decoration: none;
    color: white;
}

/* Main content styling */
main {
    padding: 2rem;
}

/* Paragraph, h1, and h3 styling */
p, h1, h3 {
    margin-bottom: 5px;
}

/* Footer styling */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: white;
}

/* Additional styling for the subtitle */
.subtitle {
    margin-top: 10px;
    opacity: 0.5;
}
