body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  max-width: 960px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white; /*Dark Blue */
  height: 100px;
  color: #1a202c; /* White */
  padding: 20px;
  z-index: 100;
}

nav {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #1a202c; /* White */
  font-size: medium;
}

nav .navbar-brand {
  color: white; /* Dark Blue */
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  color: white; /* Dark Blue */
  text-decoration: none;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #3c366b; /* Purple */
}

main {
  margin-top: 120px; /* Adjusted to accommodate the fixed header */
  margin-left: 20px;
}

.section {
  margin-bottom: 40px;
  margin-top: 50px;
}

.section h2 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
  text-decoration: dotted;
  color: #1a202c; /* Dark Blue */
}

.section p {
  margin-bottom: 10px;
}

.section img {
  max-width: 100%;
  height: auto;
}

.work-experience {
  margin-bottom: 20px;
}

.work-experience h3,
.project h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 10px;
  color: #1a202c; /* Dark Blue */
}

.work-experience p {
  margin-bottom: 10px;
}

footer{
  background-color: #f8f8f8;
  padding: 20px;
  text-align: center;
}
footer #up{
  color: #1a202c;
}

.footer-text {
  color: #888;
  font-size: 14px;
  margin-top: 10px;
}

#education-table {
  width: 100%;
  border-collapse: collapse;
}

#education-table th,
#education-table td {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: center;
}

#education-table th {
  background-color: #f2f2f2;
  text-align: center;
}

a {
  color: #1a202c; /* Dark Blue */
  text-decoration: underline;
}

/* CSS styling for the skills section */
.skill-tag, skill-write {
  display: inline-block;
  padding: 8px 12px;
  margin: 5px;
  background-color: #e2e8f0; /* Light Gray */
  border-radius: 4px;
}

#moving-skills {
  padding: 8px 12px;
  margin-left: 5px;
} 

.carousel-control.right, .carousel-control.left {
  background-image: none;
  color: #070505;
}