body {
  margin: 30px auto 0 auto;
  max-width: 720px;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  padding-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  padding: 0;
}

.hamburger {
  width: 32px;
  display: none;
  transition: transform 0.3s ease;
}

.hamburger.active {
  transform: rotate(90deg);
}

.container-logo {
  display: flex;
  gap: 10px;
  flex-direction: row;
  align-items: center;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-family: "Archivo", sans-serif;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.st-name {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.nd-name {
  font-family: "Libre Baskerville", serif;
}

.header-ttg {
  display: flex;
  flex-direction: column;
  margin: 40px 0px 20px 0px;
}

.header-ttg h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: rgb(53, 53, 53);
}

.header-ttg p {
  font-size: 16px;
  color: rgb(99, 99, 99);
  line-height: 20px;
}

.team-section {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.box-profile {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 10px;
  background-color: #fafafa;
}

.box-profile img {
  width: 200px;
  object-fit: cover;
  margin-bottom: 10px;
}

.box-profile h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.box-profile p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.inner-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inner-text h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: rgb(53, 53, 53);
}

.inner-text p {
  font-size: 16px;
  color: rgb(65, 65, 65);
  line-height: 20px;
}

footer {
  margin-top: 100px;
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 100%;
  justify-content: space-between;
  padding-bottom: 40px;
}

.logo-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  font-size: 16px;
}

.logo-container img {
  width: 20px;
}

.st-name-footer,
.nd-name-footer {
  font-size: 16px;
  font-weight: 800;
}

.nd-name-footer {
  font-family: "Libre Baskerville", serif;
}

.desc-footer {
  font-size: 16px;
  font-family: "Archivo", sans-serif;
  color: gray;
  margin-top: 10px;
}

footer .container-1 {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.container-2 {
  width: 60%;
}

.container-2 h3 {
  font-weight: 600;
  font-size: 16px;
}

.container-2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container-2 ul li {
  margin-bottom: 10px;
}

.container-2 ul li a {
  text-decoration: none;
  color: rgb(84, 84, 84);
}

.container-3 {
  width: 30%;
}
.container-3 > p {
  font-size: 16px;
  font-family: "Archivo", sans-serif;
  color: rgb(39, 39, 39);
}

.container-3 h3 {
  font-weight: 600;
  font-size: 16px;
}

@media (max-width: 600px) {
  body {
    margin: 20px auto 0 auto;
    padding: 0 30px;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
  }

  .hamburger:hover {
    transform: scale(1.1);
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 8px;
    margin: 10px;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9;
  }
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0;
    padding: 20px;
    margin: 0;
  }

  .nav-menu li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
  }

  .nav-menu a:hover {
    color: #666;
  }

  .container-logo {
    flex-direction: row;
    align-items: center;
  }

  .header-ttg h1 {
    font-size: 28px;
  }

  .header-ttg p {
    font-size: 14px;
  }

  .team-section h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .team-section p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .team-section {
    flex-direction: column;
    align-items: center;
  }

  footer {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .container-2 ul {
    margin-top: 20px;
  }

  footer .container-3 {
    width: 100%;
  }

  .container-3 h3 {
    margin-bottom: 20px;
  }
}
