/* Global styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8; /* Update with your desired background color */
}

h1, h2 {
  color: #333;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header styles */
header {
  /* background-color: #f8f8f8; */
  padding: 20px;
  text-align: center;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 0;
}

nav li {
  margin: 0 10px;
}

/* Main styles */
main {
  max-width: 960px; /* Adjust the width as per your preference */
  margin: 0 auto; /* Center the container horizontally */
  padding: 20px;
}

/* About section styles */
#about {
  margin-bottom: 20px;
}

/* Research interests section styles */
#research ul {
  margin-top: 0;
}

/* Projects section styles */
#projects ul {
  margin-top: 0;
}

/* Contact section styles */
#contact ul {
  margin-top: 0;
}

footer {
  /* background-color: #f8f8f8; */
  padding: 10px;
  text-align: center;
}

/* Media queries for responsive design */
@media screen and (max-width: 600px) {
  header h1 {
    font-size: 24px;
  }
}

@media screen and (max-width: 400px) {
  header h1 {
    font-size: 20px;
  }
}
