/* General Reset */
body, h1, h2, p, a {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
.parallax-background {
    width: 100%;
    height: 295vh; /* Make it cover the full viewport */
    background: url('../images/background.webp') no-repeat center center;
    background-size: cover;
    position: absolute; /* Ensure it scrolls with the page */
    z-index: -1; /* Push behind content */
}

/* Body Styling */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: white;
    line-height: 1.6;
}

/* Header Styling */
header {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    color: #ffffff; /* Pure white text */
    padding: 20px 0;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); /* Subtle shadow */
    font-size: 1.5rem;
    animation: fadeIn 1s ease-in;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ffffff; /* White for the main title */
}

h2 {
    font-size: 2rem;
    color: #E6E6FA; /* Light lavender for subtitles */
    text-align: center;

}

/* Main Section Styling */
main {
    padding: none;
    background-color: none; /* Transparent black for readability */
    border-radius: 10px;
    max-width: 800px;
    margin: 50px auto;
    box-shadow: none;
}


/* Graph Container */
#graph-container {
    margin-top: 20px;
    text-align: center;
}

#graph-container h3 {
    text-align: center;
    margin-top: 20px;
    color: #E6E6FA; /* Light lavender */
    font-size: 1.5rem;
}

#graph-container img {
    margin: 10px auto;
    max-width: 100%;
    height: auto;
    display: block;
    border: 2px solid #ffffff; /* White border for images */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

/* Link Container */
#links-container {
    margin: 20px auto;
    text-align: center;
}

#links-container h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #E6E6FA; /* Light lavender */
}

/* Button-Like Links */
a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    color: white; /* White text for buttons */
    background-color: #030303; /* Dodger Blue background */
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
}

a:hover {
    background-color: #b44646; /* Steel Blue on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
}

a:active {
    background-color: #5F9EA0; /* Cadet Blue when clicked */
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    margin-top: 20px;
    font-size: 1rem;
}

/* Animation for header */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
#clock {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E6E6FA; /* Light lavender to match the theme */
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.5); /* Subtle glow */
    text-align: center;
    margin: 10px 0;
}
