/* General reset for margins, paddings, and borders */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Code Pro', monospace; /* Use Source Code Pro for body text */
    background-color: #fefefe; /* Light background */
    color: #333; /* Dark text for contrast */
    line-height: 1.8;
    margin: 0;
    padding: 20px;
    font-size: 18px;
    max-width: 1200px; /* Keeps the content narrow and focused */
    margin-left: auto;
    margin-right: auto;
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
}

/* Styling for the title (name) */
.name {
    font-family: 'Source Code Pro', monospace; /* Keep using Source Code Pro for the title */
    font-size: 48px; /* Larger font size for the title */
    text-align: center; /* Center the title */
    margin-top: 20px;
    margin-bottom: 10px; /* Space below the title */
}

/* Styling for the navigation links below the title */
.nav {
    text-align: center; /* Center the navigation */
    margin-bottom: 30px;
}

/* Links styling */
a {
    color: #000; /* Black links */
    text-decoration: none; /* No underline */
}

a:hover {
    text-decoration: underline; /* Add underline on hover for better visibility */
}

/* Styling for red links */
.nav a.red {
    color: red; /* Red color for specific navigation links */
}

/* Footer section */
footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ddd; /* Subtle border on the top */
    text-align: center;
    font-size: 14px;
    color: #666; /* Lighter gray for footer */
}

/* Responsive Design - mobile adjustments */
@media (max-width: 600px) {
    body {
        padding: 10px;
        font-size: 16px;
    }

    .name {
        font-size: 36px; /* Adjust title font size for smaller screens */
    }

    .nav a {
        font-size: 16px; /* Adjust navigation link font size */
    }
}
