* {
  background-color: #1a1d23;
  color: white;
  font-family: "Fira Code", monospace;
  /* margin: 0; */
  padding: 0;
  box-sizing: border-box;
}

#contact_h {
  border: 2px solid #c778dd;
  padding: 10px 20px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  top: 124px;
  z-index: 1;
  font-size: 2rem;
  border-radius: 12px;
  background: linear-gradient(45deg, #c778dd, #6a5acd);
  color: #ffffff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.contact_form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#contactForm {
  padding: 40px;
  border: 2px solid #c778dd;
  border-radius: 20px;
  background: linear-gradient(145deg, #282c33, #1f242a);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 600px;
  transition: all 0.3s ease-in-out;
}

#contactForm:hover {
  box-shadow: 0px 8px 20px rgba(199, 120, 221, 0.7);
}

#contactForm label {
  font-size: 1rem;
  color: #c778dd;
}

#contactForm input,
#contactForm textarea {
  padding: 12px;
  border: 1px solid #c778dd;
  border-radius: 10px;
  background: #1e2227;
  color: white;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease-in-out;
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: #6a5acd;
  background: #15181d;
  box-shadow: 0px 0px 10px #6a5acd;
}

#contactForm textarea {
  resize: none;
  height: 120px;
}

#submit_Form {
  padding: 12px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  background: linear-gradient(45deg, #c778dd, #6a5acd);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

#submit_Form:hover {
  background: linear-gradient(45deg, #6a5acd, #c778dd);
  box-shadow: 0px 6px 15px rgba(199, 120, 221, 0.8);
  transform: scale(1.05);
}

.resume_download {
  margin-top: 20px;
  text-align: center;
}

.resume_download .Download {
  padding: 12px 25px;
  font-size: 1rem;
  border: 2px solid #c778dd;
  border-radius: 10px;
  background: transparent;
  color: #c778dd;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.resume_download .Download:hover {
  background: #c778dd;
  color: white;
  transform: scale(1.05);
  box-shadow: 0px 4px 10px rgba(199, 120, 221, 0.8);
}
#fullName {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-direction: column;
}
@media (max-width: 1024px) {
  #contactForm {
    width: 90%;
    padding: 30px;
  }

  #contact_h {
    font-size: 1.8rem;
    padding: 8px 16px;
    top: 100px;
  }

  #submit_Form {
    font-size: 1rem;
    padding: 10px 15px;
  }

  .resume_download .Download {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  #fullName {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  #contact_h {
    font-size: 1.5rem;
    padding: 6px 12px;
    top: 90px;
  }

  #contactForm {
    gap: 15px;
    padding: 20px;
  }

  #contactForm input,
  #contactForm textarea {
    font-size: 0.9rem;
    padding: 10px;
  }

  #submit_Form {
    font-size: 1rem;
    padding: 8px 12px;
  }

  .resume_download .Download {
    font-size: 0.8rem;
    padding: 8px 18px;
  }
}

@media (max-width: 480px) {
  #contact_h {
    font-size: 1.2rem;
    padding: 5px 10px;
    top: 80px;
  }

  #contactForm {
    width: 100%;
    padding: 15px;
  }

  #contactForm input,
  #contactForm textarea {
    font-size: 0.8rem;
    padding: 8px;
  }

  #submit_Form {
    font-size: 0.9rem;
    padding: 6px 10px;
  }

  .resume_download .Download {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  #fullName {
    gap: 5px;
  }
}
