/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  h3 {
    font-size: 22px;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9;
    color: #333;
  }
  
  a {
    color: #007bff;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  ul {
    list-style: none;
  }
  
  /* Header */
  header {
    background-color: #333;
    padding: 20px 0;
    color: white;
    position: fixed;
    width: 100%;
  }
  
  nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  
  nav .logo h1 {
    font-size: 22px;
  }
  
  nav ul {
    display: flex;
    gap: 20px;
  }
  
  nav a {
    color: white;
    font-weight: 500;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  /* Sections */
  .section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  /* Skills */
  .skills-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .skills-list li {
    background-color: #e9ecef;
    padding: 10px;
    border-radius: 5px;
    font-weight: 500;
  }
  
  /* Projects */
  .project-card {
    background-color: #ffffff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .project-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .project-card p {
    font-size: 16px;
  }
  
  .project-card a {
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
  }
  
  /* Contact */
  .contact-list {
    margin-top: 20px;
  }
  
  .contact-list li {
    font-size: 18px;
  }
  
  /* Footer */
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
  }
  
  footer p {
    font-size: 14px;
  }
 #about {
    padding-top: 100px;
 }
 
 #profile-img {
    width: 180px;
    margin: auto;
    display: block;
 }

.menu {
    display: none;
}
 @media screen and (min-width: 500px) {
  .menu {
    display: flex;
    gap: 20px;
  }
  #profile-img {
    float: right;
    width: 180px;
    margin-left: 15px;
  }
 }

 .content {
  display: none;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.toggle {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1em;
  text-align: left;
  width: 100%;
}
.skills-list li:hover{
  background-color: rgb(196, 196, 196);
}

#at-work-img {
  width: 100%;
}