body {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  color: #000;
}

/* ===== Header ===== */
.header {
  width: 100%;
  padding: 1rem 2rem;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Noto Sans", sans-serif;
  background-color: #fff;
  border-bottom: 1px solid #eaeaea;
}

.header .left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header .logo-text {
  font-size: 3rem;
  font-weight: 300;
  font-family: "Love Ya Like A Sister", cursive;
  color: #000;
  text-decoration: none;
}

.header .GitHub a {
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.header .GitHub a:hover {
  text-decoration: underline;
}

.header .right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ===== Hero ===== */
.hero-section {
  text-align: center;
  padding: 3rem 1rem;
}

.hero-logo h1 {
  font-family: "Love Ya Like A Sister", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 8rem;
  margin: 0;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  color: rgb(0, 85, 255);
  text-decoration: none;
  font-weight: 600;
}

.cta-button:hover {
  text-decoration: underline;
}

/* ===== Members ===== */
.subtitle {
  text-align: center;
  margin: 2rem 0 1rem;
}

.members-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}

.member {
  border: 1px solid #eaeaea;
  border-radius: 6px;
  padding: 1rem;
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
}

.member img {
  border-radius: 50%;
  object-fit: cover;
}

.btns {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ===== Responsive ===== */
@media only screen and (min-width: 1000px) {
  .header .left .message {
    font-size: 30px;
    margin-left: 50px;
  }
  .header .left .GitHub {
    font-size: 26px;
  }
}

@media only screen and (max-width: 700px) {
  .header .left .message {
    display: none;
  }
  .header .left .GitHub {
    font-size: 20px;
  }
  .header .right .memb {
    font-size: 12px;
  }
}

@media only screen and (max-width: 500px) {
  .header .left .GitHub {
    font-size: 14px;
  }
  .hero-logo h1 {
    font-size: 5rem;
  }
  .cta-button {
    font-size: small;
  }
}
