body{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    color: #333
}
/*navbar*/
#navbar{
    background-color: black;
    display: flex;
    top: 0;
    gap: 30px;
    justify-content: center;
    z-index: 1000;
    color: white;
    position: sticky;
    padding: 16px 20px;
}
#navbar a{
    font-size: 18px;
    text-decoration: none;
    color: white;
    
}


/*welcome section*/
#welcome-section{
    background:linear-gradient(135deg,#772AA3 0%,#2C2AA3 100%);
    text-align: center;
    color: white;
    padding-top: 50px;
    height: 500px;

}
.welcome-text{
    position: relative;
    top: 30%;
    transform: translateY(-60%);
}
#welcome-section h1{
    margin-bottom: 10px;
    margin-top: 15px;
    font-size: 3rem;


}
#welcome-section p{
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;


}
/*projects section*/
   #projects {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto 80px auto;
    }
    #projects h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: #333;
    }
    .project-tile {
      background: white;
      border-radius: 8px;
      box-shadow: 0 3px 6px rgb(0 0 0 / 0.1);
      padding: 20px;
      margin-bottom: 30px;
      transition: transform 0.3s ease;
    }
    .project-tile:hover {
      transform: translateY(-5px);
    }
    .project-tile h3 {
      margin-top: 0;
      margin-bottom: 10px;
      color: #1e90ff;
    }
    .project-tile p {
      margin-bottom: 15px;
      color: #555;
    }
    .project-tile a {
      color: #1e90ff;
      text-decoration: none;
      font-weight: 600;
    }
    .project-tile a:hover {
      text-decoration: underline;
    }

    /* Profile link style */
    #profile-link {
      display: block;
      text-align: center;
      margin-bottom: 50px;
      font-size: 1.2rem;
      font-weight: 600;
      color: #1e90ff;
      text-decoration: none;
    }
    #profile-link:hover {
      text-decoration: underline;
    }
    /*contact section*/
    #contact{
        background-color: black;
        text-align: center;
        padding: 58px 20px;
        color: white;

    }
    #contact a {
        color: white;

    }
    #contact ul{
        list-style: none;
        margin: 0;
        padding: 0;

    }
    #contact li{
        margin: 9px;
    }

/*phone style*/
@media (max-width: 600px) {
  body {
    font-size: 16px;
    padding: 0;
    margin: 0;
  }

  #navbar {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    text-align: center;
  }

  #navbar a {
    font-size: 16px;
    padding: 10px 12px;
    display: inline-block;
    border-radius: 4px;
  }

  #welcome-section {
    padding: 60px 15px;
    height: auto;
  }
  .welcome-text{
    top: 30%;
    transform: translateY(-10%);
  }

  #welcome-section h1 {
    font-size: 2rem;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  #welcome-section p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto 1em auto;
  }

  #projects {
    padding: 30px 10px;
  }

  #projects h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .project-tile {
    padding: 15px;
  }

  .project-tile h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .project-tile p {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .project-tile a {
    padding: 6px 8px;
    font-size: 15px;
  }

  #contact {
    padding: 25px 10px;
  }

  #contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  #contact ul {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    max-width: 280px;
  }

  #contact li {
    font-size: 16px;
    margin: 9px 0;
  }

  #footer {
    font-size: 13px;
    padding: 15px 10px;
  }

  a:focus {
    outline: 2px solid #1e90ff;
    outline-offset: 2px;
  }
}



/* tablet style */
@media (min-width: 601px) and (max-width: 1024px) {
  #contact ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px auto;
    max-width: 400px;
  }

  #contact li {
    font-size: 18px;
    margin: 9px 0;
  }

  #contact {
    padding: 40px 30px;
  }

  #projects {
    padding: 50px 30px;
    max-width: 700px;
  }

  #projects h2 {
    font-size: 2.2rem;
    margin-bottom: 35px;
  }

  .project-tile {
    padding: 18px;
  }

  .project-tile h3 {
    font-size: 1.4rem;
  }

  .project-tile p {
    font-size: 16px;
  }
  
  #navbar a {
    font-size: 17px;
    padding: 8px 10px;
  }
}
