* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f0f0f0;
  color: #333;
}

/* Header styles */
header {
  background-color: rgba(0, 0, 0, 0.788);
  width: 90%;
  margin: 30px auto;
  border-radius: 10px;

  color: white;
  padding: 40px 0;
  text-align: center;
}

header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

header p {
  font-size: 18px;
}

/* About Section */
.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about {
  display: flex;
  align-items: center;
  background-color: #ffffff57;
  color: black;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 50px;
  margin-bottom: 100px;
  margin-top: 100px;

  max-width: 900px;
  width: 100%;
}

.profile-img {
  margin-right: 30px;
  width: 200px;
  height: 200px;
}

.info h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.info p {
  font-size: 16px;
  color: black;
  margin-bottom: 10px;
}

/* Footer styles */
footer {
  background-color: rgba(0, 0, 0, 0.603);

  color: white;
  padding: 40px 0;
  text-align: center;
  margin-top: 40px;
  width: 100%;
}

.footer-content a {
  color: rgba(255, 0, 0, 0.55);
  text-decoration: none;
}
.footer {
  padding: 75px;
}
.about-section {
  background-image: url(images/images.jfif);
  background-color: rgba(0, 0, 0, 0.495);
  background-attachment: fixed;
  background-blend-mode: darken;
  background-size: cover;
}
.menubar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  padding: 10px 50px;
  width: 100%;
}
.menubar h1 {
  color: white;
  font-size: 25px;
  font-family: "Inter", serif;
}
.menubar input {
  padding: 10px;
  background-color: black;
  border: white 1px solid;
  color: white;
}
.search {
  display: flex;
  align-items: center;
  gap: 15px;
}
.links a {
  color: white;
  text-decoration: none;
  font-family: "Inter", serif;
  font-weight: 700;
  transition: color 0.2s ease-in-out;
}
.links a:hover {
  color: rgba(255, 0, 0, 0.55);
  text-decoration: underline;
}
.links {
  display: flex;
  gap: 20px;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-links {
  display: none;
  position: absolute;

  background-color: white;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.dropdown-links a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-links a:hover {
  color: black;
}
.dropdown:hover .dropdown-links {
  display: block;
}
html,
body {
  overflow-x: hidden;
}
.menubar i {
  color: white;
  display: none;
}
.all1 {
  display: none;
}
#mobile {
  display: none;
}
@media screen and (min-width: 360px) and (max-width: 640px) {
  .menubar {
    width: 100%;
  }
  .search {
    display: none;
  }
  .links {
    display: none;
  }
  .menubar img {
    width: 60px;
  }
  .menubar i {
    display: block;
    font-size: 22px;
  }
  #mobile {
    display: block;
  }
  .about {
    width: 90%;
    display: flex;
    flex-direction: column;
  }
  .profile-img {
    margin-right: 30px;
    width: 150px;
    height: 200px;
  }
  .about-section {
    background-attachment: scroll;
  }
}
