/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

/* Center content and layout */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background-color: #ffffff;
    color: #000000;
}

/* Navigation styles */
nav {
    position: absolute;
    top: 20px;
    right: 30px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    transition: color 0.3s ease-in-out; /* Smooth transition */
}

nav a:hover {
    color: gray;
    text-decoration: underline; /* Adds subtle underline on hover */
}

/* Main content */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Location & Bio */
p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Footer (LinkedIn & Email) */
footer {
    margin-top: 40px;
}

footer a {
    text-decoration: none;
    color: black;
    font-size: 16px;
}

footer a:hover {
    text-decoration: underline;
}


/* Style for Research & Notes Pages */
main {
    width: 80%;
    max-width: 800px;
    margin: 100px auto 0 auto;;
    text-align: center;
}

/* Style for Page Titles */
h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

body {
    display: block;
}

/* Placeholder text */
p {
    font-size: 18px;
    color: gray;
}

.subtitle {
  text-align: center;
  font-size: 1.5rem;
  color: gray;
  margin-bottom: 1rem;
}

main ul {
  list-style-type: disc;
  padding-left: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.notes-list ul {
    list-style-position: inside;
    text-align: left;
    margin: 0 auto;
    display: inline-block;
}
