/* General Styling */
body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
  }
  
  h1, h2, h3 {
    font-weight: normal;
  }
  
  /* Header Styling */
  header {
    background-color: #606c5d;
    color: #fff;
    padding: 20px;
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo a{
    font-size: 33px;
    font-weight: 700;
    color: #ffa41b;
    text-decoration: none;
  }

  .logo a:hover{
    color: #ffa41b;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    text-transform: uppercase;
    font-size: 16px;
  }
  
  nav li {
    margin-left: 20px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #00c4ff;
  }

  .fa-bars{
    color: #fff;
  }

  .checkbtn{
    font-size: 30px;
    color: #000;
    line-height: 80px;
    cursor: pointer;
    display: none;
}

#check{
    display: none;
}

@media (max-width: 858px){
  .checkbtn{
      display: block;
  }

  nav ul{
      position: absolute;
      width: 100%;
      height: 90vh;
      background: #000;
      top: 131px;
      left: -115%;
      text-align: center;
      display: flex;
      flex-direction: column;
      transition: all 0.5s;
  }

  nav ul li{
      display: inline-block;
      line-height: -70;
      margin: 30px 0;
      position: relative;
      top: -120px;
  }

  nav ul li a{
      font-size: 20px;
  }

  a:hover,a.active{
      background: none;
      color: #fff;
  }

  #check:checked ~ ul{
      left: 0;
  }
}
  
  /* Main Styling */
  main {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  section {
    margin-bottom: 60px;
  }

  #about p{
    background-color: #00c4ff;
    padding: 10px 30px;
    color: #f7f7f7;
  }
  
  h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ff6969;
  }
  
  h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ff6969;
  }
  
  h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffa41b;
  }
  
  p {
    line-height: 1.5;
  }
  
 #skills ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: #00c4ff;
    padding: 10px 30px;
    color: #fff;
  }
  
  li {
    margin-right: 20px;
    margin-bottom: 10px;
  }

  .bar{
    background-color: #454545;
    display: block;
    height: 20px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    cursor: pointer;
  }

  .bar:hover{
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  }

  .bar span{
    height: 20px;
    float: left;
    background: linear-gradient(135deg, rgba(236, 0, 140, 1)0%, rgba(252, 103, 103, 1)100%);
  }

  .htm{
    width: 100%;
    animation: htm 3s;
  }

  .cs3{
    width: 100%;
    animation: cs3 3s;
  }

  .jscript{
    width: 90%;
    animation: jscript 3s;
  }

  .rct{
    width: 75%;
    animation: rct 3s;
  }

  @keyframes htm{
    0%{
      width: 0%;
    }
    100%{
      width: 100%;
    }
  }

  @keyframes cs3{
    0%{
      width: 0%;
    }
    100%{
      width: 100%;
    }
  }

  @keyframes jscript{
    0%{
      width: 0%;
    }
    100%{
      width: 90%;
    }
  }

  @keyframes rct{
    0%{
      width: 0%;
    }
    100%{
      width: 75%;
    }
  }
  
  .project {
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 5px #ddd;
  }
  
  .project h3 {
    margin-top: 0;
  }
  
  .project p {
    margin-bottom: 20px;
  }
  
  .project a {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    background-color: #ffa41b;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .project a:hover {
    background-color: #ff6969;
    color: #f5f5f5;
  }
  
  /* Contact Form Styling */
  form {
    max-width: 400px;
    margin: 0 auto;
  }
  
  label {
    display: block;
    margin-bottom: 10px;
  }
  
  input,
  textarea {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  button[type="submit"] {
    display: block;
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #ffa41b;
    color: #fff;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  button[type="submit"]:hover {
    background-color: #00c4ff;
    color: #fff;
  }

  button a{
    color: #fff;
    text-decoration: none;
  }

  .social-icons{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .social-icons a{
    margin-left: 24px;
    color: #fff;
    transition: .5s;
  }

  .social-icons a:hover{
    color: #ffa41b;
  }

  footer {
    background-color: #606c5d;
    color: #fff;
    padding: 20px;
    text-align: center;
  }

  .fa-facebook:hover{
    color: #00c4ff;
  }

  .fa-twitter:hover{
    color: #00c4ff;
  }
  