body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  height: 100vh;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
}

.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  position: absolute;
  left: 20px;
}

.line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
}

.line2 {
  stroke-dasharray: 60 60;
}

.line3 {
  stroke-dasharray: 60 207;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

#logo {
  width: 100px;
  height: auto;
  margin-left: 50px;
}

#dropdown-list {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100vh;
  background-color: #333;
  display: none;
  color: white;
  padding: 20px;
  flex-direction: column;
  justify-content: space-between;
}

#dropdown-list .close {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  text-align: left;
  margin-bottom: 20px;
}

#dropdown-list .menu-logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

#dropdown-list ul {
  list-style-type: none;
  padding: 0;
}

#dropdown-list ul li a {
  text-decoration: none;
  color: white;
  padding: 10px;
  display: block;
}

#dropdown-list ul li a:hover {
  background-color: #444;
}

.content {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  margin-left: 270px; /* to create space for the menu */
  flex-wrap: wrap;
}

.about {
  width: 70%;
  padding-right: 20px;
}

.team {
  width: 100%;
  margin-top: 30px;
  padding: 20px;
  text-align: center;
}

.team h2 {
  margin-bottom: 20px;
}

.cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.card {
  width: 250px;
  background-color: #f4f4f4;
  padding: 20px;
  margin: 10px;
  border-radius: 8px;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .content {
    margin-left: 0;
    flex-direction: column;
    align-items: center;
  }

  .about {
    width: 100%;
    padding-right: 0;
  }

  .image img {
    max-width: 100%;
  }

  #dropdown-list {
    width: 100%;
    height: auto;
  }
}