body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: rgb(240, 240, 240);
  color: rgb(50, 50, 50);
}

.header-content {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: rgb(0, 123, 255);
  color: white;
}

.profile-img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-right: 20px;
}

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

nav ul li {
  display: inline;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

nav ul li a:hover {
  color: rgb(255, 223, 186);
}

#theme-toggle {
  margin-left: auto;
  padding: 10px 20px;
  border: none;
  background-color: rgb(255, 223, 186);
  color: rgb(0, 123, 255);
  cursor: pointer;
  border-radius: 5px;
}

#theme-toggle:hover {
  background-color: rgb(255, 193, 121);
}

section {
  padding: 20px;
  margin: 10px 0;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
  border-bottom: 2px solid rgb(0, 123, 255);
  padding-bottom: 10px;
  color: rgb(0, 123, 255);
}

.project, .experience {
  margin-bottom: 20px;
}

.project-img, .contact-img {
  max-width: 100%;
  border-radius: 10px;
}

footer {
  text-align: center;
  padding: 10px;
  background-color: rgb(0, 123, 255);
  color: white;
  position: fixed;
  width: 100%;
  bottom: 0;
}

.dark-mode {
  background-color: rgb(40, 44, 52);
  color: rgb(200, 200, 200);
}

.dark-mode .header-content {
  background-color: rgb(20, 24, 32);
}

.dark-mode nav ul li a {
  color: rgb(200, 200, 200);
}

.dark-mode nav ul li a:hover {
  color: rgb(255, 193, 121);
}

.dark-mode #theme-toggle {
  background-color: rgb(70, 74, 82);
  color: rgb(200, 200, 200);
}

.dark-mode section {
  background-color: rgb(50, 54, 62);
  color: rgb(200, 200, 200);
}

.dark-mode footer {
  background-color: rgb(20, 24, 32);
}

/*# sourceMappingURL=style.css.map */
