/* Reset some default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  background-color: #f8f8f8;
  color: #333;
}

.section-about {
  background-color: #222;
  color: #f8f8f8;
}

.section-about h2,
.section-about p {
  color: #333;
}

.project h3,
.project p {
  color: #f8f8f8;
}

.section-contact h2 {
  color: #f8f8f8;
}

form button[type="submit"] {
  background-color: #f8f8f8;
  color: #333;
}

form button[type="submit"]:hover {
  background-color: #555;
  color: #f8f8f8;
}

h1, h2, h3 {
  margin-bottom: 1rem;
  color: #333;
}

header {
  background-color: #333;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style-type: none;
  display: flex;
}

nav ul li {
  margin-left: 1rem;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #f8f8f8;
}

#theme-toggle {
  display: flex;
}

#dark-theme,
#light-theme {
  margin-left: 1rem;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#dark-theme:hover,
#light-theme:hover {
  background-color: #555;
}

main {
  padding: 2rem;
}

.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}

.section h2 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.content {
  max-width: 800px;
}
.content h1{
  color: #f8f8f8;
}
.section-home {
  background-color: #333;
  color: #fff;
  padding: 6rem 0;
}

.section-home p {
  font-size: 1.25rem;
}

.section-about {
  background-color: #f8f8f8;
  padding: 4rem 0;
}

.about-text {
  margin-bottom: 2rem;
}

.profile {
  display: flex;
  justify-content: center;
}

.profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-projects {
  background-color: #fff;
  padding: 4rem 0;
}

.project {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: left;
}
.project h3{
  color: #333;

}
.project p{
  color: #333;
}
.project a{
  color: #333;
  text-decoration: none;
}
a{
  color: #333;
  text-decoration: none;
}

.project:hover {
  transform: translateY(-5px);
}

.section-contact {
  background-color: #333;
  color: #fff;
  padding: 4rem 0;
}

form input,
form textarea {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: #f8f8f8;
  color: #333;
  border: none;
  border-radius: 8px;
}

form input:focus,
form textarea:focus {
  outline: none;
  background-color: #fff;
}

form button {
  padding: 1rem 2rem;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #555;
}

footer {
  background-color: #333;
  color: #f8f8f8;
  padding: 1rem;
  text-align: center;
}
/* Add Dark Theme styles */
body.dark-theme {
  background-color: #333;
  color: #f8f8f8;
}

#dark-theme.dark-theme-btn,
#light-theme.dark-theme-btn {
  background-color: #333;
  color: #f8f8f8;
}
