#home_signInUp_bts_container {
  display: flex;
  align-items: center;
  justify-self: center;
  justify-content: center;
  width: 50%;
  gap: 5%;
}

#home_main button {
  width: 50%;
  height: 60px;
  border-radius: 30px;
  font-size: 20px;
}

#home_main > hr {
  width: 75%;
  margin: 20px auto;
}

/* ========== MOBILE STYLES ========== */
@media only screen and (max-width: 600px) {
  
  #home_signInUp_bts_container {
    width: 70%;
    gap: 5%;
  }

  #home_main button {
    width: 70%;
  }
  
  #home_signInUp_bts_container {
    margin: 0 auto; /* Center the container on mobile */
  }

}