@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

p {
  color: rgb(85, 85, 85);
}

nav,
.nav-links{
  display: flex;
}

nav {
    justify-content:space-between;
    align-items: center;
    height: 17vh;
}

.nav-links{
    gap: 2rem;
    list-style: none;
    font-size: 1.5rem;
    margin-right: 20px;
}



.logo img {
  height: 200px;
  width: auto;
  border-radius: 50%;
}

.logo:hover {
   cursor: default;
}


li a{
    color: black;
    text-decoration: none;
    text-decoration-color: white;
}

a:hover{
    color: grey;
    text-decoration: underline;
    text-underline-offset: 1rem;
    text-decoration-color: rgb(181, 181, 181);
}


/* HAMBURGER MENU */

#hamburger-nav {
    display: none;
  }
  
  .hamburger-menu {
    position: relative;
    display: inline-block;
  }
  
  .hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
  }
  
  .hamburger-icon span {
    width: 100%;
    height: 2px;
    background-color: black;
    transition: all 0.3 ease-in-out;
  }
  
  .menu-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    width: fit-content;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3 ease-in-out;
  }
  
  .menu-links a {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 1.5rem;
    color: black;
    text-decoration: none;
    transition: all 0.3 ease-in-out;
  }
  
  .menu-links li {
    list-style: none;
  }
  
  .menu-links.open {
    max-height: 300px;
  }
  
  .hamburger-icon.open span:first-child {
    transform: rotate(45deg) translate(10px, 5px);
  }
  
  .hamburger-icon.open span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-icon.open span:last-child {
    transform: rotate(-45deg) translate(10px, -5px);
  }
  
  .hamburger-icon span:first-child {
    transform: none;
  }
  
  .hamburger-icon span:first-child {
    opacity: 1;
  }
  
  .hamburger-icon span:first-child {
    transform: none;
  }

/* Add this to your existing style.css file */

#projects {
  background-color: #f8f8f8;
  padding: 50px 0;
}

#projects .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#projects h2 {
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#projects p {
  color: #555;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px; /* Optional: Adjust the max-width as needed */
  margin: 0 auto; /* Center the text within the container */
}

/* Add this to your existing style.css file */

#experience {
  padding: 50px 0;
}

#experience .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#experience h2 {
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#experience p {
  color: #555;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px; /* Optional: Adjust the max-width as needed */
  margin: 0 auto; /* Center the text within the container */
}

#experience ul {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

#experience li {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Optional: Style for a horizontal list */
#experience ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#experience li {
  margin: 0 10px;
}

.container img{
  max-width: 100%;
  height: auto;
  display: block;
  width: 450px;
  height: auto;

}

#contact .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media screen and (max-width: 600px) {
  h2 {
    font-size: 14px;
  }
  p {
    font-size: 12px;
  }
}
