*{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
  }
  body{
    background: #080800;
    color: antiquewhite;
  }
  #header{
    width: 100%;
    height: 100vh;
    background-image:url(background2.jpeg.jpg);
    background-size: cover;
    background-position: center;
  
  
  }
  .container{
    padding: 10px 10%;
  }
  
  nav{
    display: flex;
    align-items: right;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .logo{
    width: 140px;
  }
  nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
  }
  
  nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
  
  }
  nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
  }
  nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #d0124f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
  
  }
  nav ul li a:hover::after{
    width: 80%;
  }
  .header-text{
    margin-top: 20%;
    font-size: 30px;
  }
  .container-text h1{
    font-size: 60px;
    margin-top: 10px;
  }
  
  #about{
    padding: 80px 0;
    color: #ababaa;
  }
  .row{
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
  }
  .about-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    justify-content: space-between;
  }
   
  .about-img img {
    width: 90%;
    height: auto;
    border-radius: 0.5rem;
  }
  
  .about-text p {
    font-size: small;
    font-weight: 400;
    text-align: justify;
    font-family: 'Your Chosen Font', sans-serif; /* Change 'Your Chosen Font' to your desired font family */
    color: #333; /* Change to your desired text color */
  }
  
  .information {
    margin: 1rem 0 1.4rem;
  }
  
  .information .info-box {
    display: flex;
    align-items: center;
    margin-bottom: 1.4rem;
  }
  
  .information .info-box .bx {
    font-size: 22px;
    color: #333; /* Change to your desired icon color */
  }
  
  .information .info-box span {
    font-weight: 400;
    margin-left: 1rem;
    color: aqua; /* Change to your desired text color */
  }
  .education {
    border: 2px solid #007BFF;
    border-radius: 10px;
    margin: 20px;
    padding: 20px;
    box-shadow: whitesmoke(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  
  .education:hover {
    transform: scale(1.05);
  }
  
  .education-header {
    text-align: center;
  }
  
  .education-header h2 {
    margin: 0;
    color: #007BFF;
    font-size: 24px;
  }
  
  .education-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
  }
  
  .education-item {
    text-align: center;
    padding: 10px;
    border: 1px solid #007BFF;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 10px;
    width: calc(33.33% - 20px); /* To maintain responsiveness on small screens */
  }
  
  .education-item h3 {
    color: #007BFF;
    font-size: 18px;
    margin: 0;
  }
  
  .education-item p {
    color: white;
    font-size: 14px;
    margin: 5px 0;
  }
  body {
    font-family: Arial, sans-serif;
    background-color:black;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s ease-in-out; /* Add a background color transition */
  }
  
  
  body {
    font-family: Arial, sans-serif;
    background-color: BLACK; /* Light gray background color */
    margin: 0;
    padding: 0;
    transition: background-color 0.3s ease-in-out;
  }
  
  
  .skill {
    margin: 20px 0;
    transition: transform 0.3s ease-in-out;
    border: 1px solid black; /* Add a border to the skill boxes */
    border-radius: 10px; /* Rounded corners */
    padding: 15px;
    cursor: pointer;
    background-color:black;
  }
  
  .skill:hover {
    transform: scale(1.05);
    background-color: black; /* Slightly change background color on hover */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Add a box shadow on hover */
  }
  
  .skill h2 {
    margin: 0;
    font-size: 24px; /* Increase font size for skill names */
  }
  
  .skill-bar {
    background-color:black;
    border-radius: 5px;
    height: 20px;
    margin-top: 10px; /* Increased margin for better spacing */
    transition: width 0.3s ease-in-out;
  }
  
  .skill-level {
    border-radius: 5px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    color: black;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
  }
  
  .skill-level.html {
    width: 90%;
    background-color: #FF5733;
  }
  
  .skill-level.css {
    width: 80%;
    background-color: #3498db;
  }
  
  .skill-level.javascript {
    width: 70%;
    background-color: #f1c40f;
  }
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .certificates {
    text-align: center;
    padding: 50px;
  }
  
  .certificates h2 {
    margin-bottom: 50px;
  }
  
  .certificate {
    display: inline-block;
    margin: 10px;
  }
  
  .certificate img {
    width: 400px; /* Adjust as needed */
    height: auto;
    border: 1px solid #ddd; /* Optional: Add border for image */
    border-radius: 5px;
  }
  
  .certificate p {
    margin-top: 5px;
  }
  .Project {
    text-align: center;
    padding: 50px;
  }
  
  .Project {
    display: middle;
    margin: 10px;
  }
  
  .Project h2 {
    margin-bottom: 50px;
  }
  
  .Project img {
    width: 400px;
    height: 250px;

  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
  }
  
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form textarea {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    background-color:wheat;
    border-radius: 5px;
    color: black;
    font-size: 16px;
    transition: background-color 0.3s;
  }
  
  .contact-form input[type="text"]:focus,
  .contact-form input[type="email"]:focus,
  .contact-form textarea:focus {
    background-color: whitesmoke;
  }
  
  .contact-form textarea {
    resize: none;
    min-height: 150px;
  }
  
  .contact-form button {
    background-color: #3498db;
    color: whitesmoke;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .contact-form button:hover {
    background-color: white;
  }
  .contact-form {
    display: grid;
    place-items: center;
    margin-top: 2rem;
  }
  .contact-form form {
    display: flex;
    flex-direction: column;
    width: 650px;
  }
  form input,
  textarea {
    padding: 15px;
    border-radius: 0.5rem;
    width: 100%;
    border: none;
    outline: none;
    background: hsla(260, 100%, 44%, 0.1);
    margin-bottom: 1rem;
    color: var(--text-color);
  }
  form input::placeholder,
  textarea::placeholder {
    color: var(--text-color);
  }
  form textarea {
    resize: none;
    height: 200px;
  }
  .contact-button {
    width: 160px;
    cursor: pointer;
    background: #d635a5;
    color: #fff;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 35%;
  }
  .contact-button:hover {
    background: var(--hover);
  }
  .footer-content ul li a i {
    font-size: 24px;
    margin-right: 10px;
  }
  
  .footer-content ul li a i.fa-facebook-f {
    color: #3b5998;
  }
  
  .footer-content ul li a i.fa-twitter {
    color: #55acee;
  }
  
  .footer-content ul li a i.fa-instagram {
    color: #c13584;
  }
  