/* Reset default styles */
body, ul, nav, p, h1, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    width: 100%;
    padding: 20px 0;
    background-color: #0f0f0f;
    text-align: center;
    position: fixed;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

nav ul li a:hover {
    color: #4da6ff;
    border-bottom: 2px solid #4da6ff;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    margin-top: 60px; /* Space for the fixed header */
}

.intro {
    max-width: 800px;
    text-align: center;
}

.intro h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.intro p {
    font-size: 20px;
    color: #a6a6a6;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #0f0f0f;
    color: #666666;
    font-size: 14px;
}

/* Link hover effect */
a {
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Adjust styles for smaller screens */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    .intro h1 {
        font-size: 32px;
    }

    .intro p {
        font-size: 16px;
    }
}

/* Table of Contents Styling */
.table-of-contents {
    padding: 20px;
    background-color: #1a1a1a;
    margin-bottom: 30px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.table-of-contents h2 {
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 10px;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.table-of-contents li {
    margin: 5px 0;
}

.table-of-contents a {
    color: #4da6ff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: #82cfff;
}

/* Review Sections Styling */
.review-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #0f0f0f;
    border-radius: 8px;
    margin-bottom: 30px;
}

.review-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.review-section p {
    color: #a6a6a6;
    line-height: 1.6;
}

/* Mini-Resume Section Styling */
.mini-resume {
    padding: 20px;
    background-color: #d6d3d3;
    margin: 30px auto;
    border-radius: 8px;
    max-width: 800px;
}

.mini-resume h2 {
    font-size: 28px;
    color: #470505;
    text-align: center;
    margin-bottom: 20px;
}

.mini-resume ul {
    list-style: none;
    padding: 0;
    color: #0f0505;
}

.mini-resume li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.mini-resume strong {
    color: #0275e7;
}

