.header-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  justify-items: center;
}

/* logo  */
/* For screens smaller than 768px */
@media (max-width: 767px) {
  .header-logo {
    width: 305px;
    height: 36px;
    margin: 0; /* Center horizontally */
    max-width: 100%; /* Limit the width */
  }
}

/* For screens between 768px and 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .header-logo {
    width: 328px;
    height: 55px;
    margin: 0 auto; /* Center horizontally */
  }
}

/* For screens 1024px and larger */
@media (min-width: 1024px) {
  .header-logo {
    width: 328px;
    height: 55px;
    margin: 0; /* Not centered */
  }
}
@media (min-width: 1440px) {
  .header-logo {
    width: 328px;
    height: 55px;
    margin: 0; /* Not centered */
  }
}

/* button  */
.header-button-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.header-button {
  width: 100%;
  height: 48px;
  border: 1px solid #000;
  border-radius: 50px;
  color: #000;
  font-family: "Inter", sans-serif;
  letter-spacing: 1%;
  font-size: 14px;
  line-height: 19, 6px;
  background-color: transparent;
  cursor: pointer;
}
.header-button:hover {
  border: 1px solid #e9e9e9;
  background-color: #e9e9e9;
}

/* mobile screen  */

@media (min-width: 768px) {
  .header-button-wrapper {
    flex-direction: row;
  }

  .header-button {
    width: 250px;
    height: 56px;
    font-size: 16px;
    line-height: 22.4px;
    font-weight: 600;
  }
}

/* desktop screen  */

@media (min-width: 1024px) {
  .header-button {
    width: 250px;
    height: 56px;
    font-weight: 700;
    font-size: 16px;
    line-height: 22.4px;
  }

  .header-wrapper {
    flex-direction: row;
  }

  .header-button-wrapper {
    margin-top: 0;
  }
}
