@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

body {
  background-color: #f5f5f5;
  font-family: "Inter", sans-serif, "Courier New", Courier, monospace;
}

.object-cover {
  object-fit: cover;
}
.object-fill {
  object-fit: fill;
}

.bg-primary-color {
  background-color: #21af5b;
  color: white;
}
.bg-primary-color:hover {
  background-color: #108541;
  color: white;
}
.primary-color {
  color: #21af5b;
}

.hero-title {
  font-size: 40px;
}
.join-title {
  font-size: 24px;
}
.hero-subtitle {
  font-size: 16px;
}
.btn {
  font-size: 16px;
}
.image-goal {
  height: 40vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.font-goal {
  font-size: 32px;
}
.font-goal-subtitle {
  font-size: 16px;
}
.close-btn {
  position: relative;
  bottom: 6rem;
  right: 20px;
  cursor: pointer;
  z-index: 1; /* Memastikan tombol x muncul di atas gambar */
  width: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
}

@media only screen and (min-width: 768px) {
  .hero-title {
    font-size: 60px;
  }
  .hero-subtitle {
    font-size: 20px;
  }
  .btn {
    font-size: 20px;
  }
  .image-goal {
    height: 70vh;
  }
  .font-goal {
    font-size: 40px;
  }
  .font-goal-subtitle {
    font-size: 18px;
  }
}
