/* General styles */
body {
    margin: 60px auto;
    width: 70%;
    background-color: #1e1e1e; /* Dark background */
    color: #f0f0f0; /* Light text */
    font-family: 'Roboto', sans-serif; /* font */
}

/* Navigation styles */
nav ul, footer ul {
    font-family: 'Roboto', sans-serif;
    padding: 0;
    list-style: none;
    font-weight: bold;
}

nav ul li, footer ul li {
    display: inline;
    margin-right: 20px;
}

a {
    text-decoration: none;
    color: #1e90ff; /* Lighter link color for contrast */
    transition: color 0.3s ease; /* Smooth transition for hover */
}

a:hover {
    text-decoration: underline;
    color: #87cefa; /* Hover effect for links */
}

/* Header and paragraph styles */
h1 {
    font-size: 3em;
    font-family: 'Roboto', sans-serif;
    color: #ffffff; /* White color for headers */
}

p {
    font-size: 1.5em;
    font-family: 'Roboto', sans-serif;
    line-height: 1.4em;
    color: #dcdcdc; /* Slightly lighter gray for text */
}

/* Footer styles */
footer {
    border-top: 1px solid #333333; /* Darker border on top of footer */
    font-size: .8em;
    text-align: center;
}

footer ul li a:hover {
    color: #1e90ff;
}

/* Adding a subtle box shadow to container */
.container {
    background-color: #2e2e2e; /* Dark gray for container */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5); /* Soft shadow effect */
}

/* Styling for Project Links Section */
.links ul {
    list-style-type: none;
    padding: 0;
}

.links li {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.links a {
    color: #1e90ff;
    font-weight: bold;
    text-decoration: none;
}

.links a:hover {
    color: #87cefa;
    text-decoration: underline;
}

/* General section styling */
.section {
    margin-bottom: 40px;
}

.section h2 {
    color: #ffffff;
    font-size: 2em;
    margin-bottom: 10px;
}

.section ul {
    list-style: disc;
    margin-left: 20px;
}

.section p, .section ul li {
    color: #dcdcdc;
    font-size: 1.2em;
    line-height: 1.6em;
}
