body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  /* Hero Section */
  #hero {
    background-image: linear-gradient(to right, #3498db, #8e44ad);
    color: #fff;
    padding: 100px 0;
    text-align: center;
  }
  
  #hero h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  #hero p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  #hero .btn {
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    background-color: #fff;
    color: #3498db;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  #hero .btn:hover {
    background-color: #fff;
    color: #8e44ad;
  }
  
  #hero img {
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* About Section */
  #about {
    background-color: #f4f4f4;
    padding: 50px;
  }
  
  #about h2 {
    margin-bottom: 20px;
  }
  
  /* Skills Section */
  #skills ul {
    display: flex;
    list-style: none;
    padding: 0;
  }
  
  #skills li {
    margin-right: 20px;
    display: flex;
    align-items: center;
  }
  
  .skill-percentage {
    font-weight: bold;
    margin-left: 5px;
  }
  
  #contact form input,
  #contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  #contact form button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  /* Footer Section */
  #footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  #footer p {
    margin: 0;
  }
  #skils-page{
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url("../images/skills3.jpg");
    height: 80vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  /*needs to be responsive*/
  
  
  .skills {
    text-align: right; /* Right-align text */
    padding-top: 5px; /* Add top padding */
    padding-bottom: 5px; /* Add bottom padding */
    color: rgb(5, 12, 4); /* White text color */
    height: 60%;
  }
  
  .html {width: 80%; background-color: rgb(17, 255, 0);} /* Green */
  .css {width: 80%; background-color: #2196F3;} /* Blue */
  .js {width: 65%; background-color: #f44336;} /* Red */
  .php {width: 60%; background-color: #808080;} /* Dark Grey */
  .cpp{width: 80%; background-color: aquamarine;}
  .java{width: 88%; background-color: rgb(210, 145, 5);}
  .python{width: 50%; background-color: #b81dc3;}