@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  min-height: 100vh;
}
.list {
  position: relative;
}
.list h2 {
  color: #000000;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.list ul {
  position: relative;
}
.list ul li {
  position: relative;
  left: 0;
  color: #000000;
  list-style: none;
  margin: 4px 0;
  border-left: 2px solid #000000;
  transition: 0.5s;
  cursor: pointer;
}
.list ul li:hover {
  left: 10px;
}
.list ul li span {
  position: relative;
  padding: 8px;
  padding-left: 12px;
  display: inline-block;
  z-index: 1;
  transition: 0.5s;
}
.list ul li:hover span {
  color: #ffffff;
}
.list ul li:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000000;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.5s;
}
.list ul li:hover:before {
  transform: scaleX(1);
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    min-height: 100vh;
  }
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999; /* Ensure the header is above other content */
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    min-height: 100vh;
  }
  


/* Add this CSS */
.header-content {
    display: flex;
    align-items: center;
    padding: 0 20px; /* Add padding to create space around the header content */
  }
  
  .list {
    margin-top: 110px; /* Adjust the margin to create space between the header and content */
  }
  
  
/* Add this CSS */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    color: #fff;
    padding: 10px;
    z-index: 999;
  }
  
  header h1 {
    margin: 0;
    flex-grow: 1; /* Allow the text to take up the available space */
    text-align: center; /* Center the text horizontally */
  }
  
  header img {
    max-width: 50px;
    height: auto;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-left: 10px;
  }
  



  /* Add this CSS for mobile responsiveness */
@media (max-width: 600px) {
    .header-content {
      flex-direction: column;
      align-items: center;
    }
  
    .list {
      margin: 80px 10px 10px; /* Add margin to create space below the header and on the sides */
    }
  
    .list h2 {
      text-align: center;
    }
  
    .list ul {
      padding-left: 0; /* Remove the default padding of the ul element */
    }
  
    .list ul li {
      border-left: 2px solid #000000;
      padding-left: 0px; /* Increase padding for better visibility */
    }
  }
  

  