* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 165px 10px;
  width: 100%;
  margin: auto;
  min-height: 100vh;
  background-color: #242628;
  background-image: url(./assets/world.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; /* Changed from cover to contain */
  text-align: center;
  overflow: hidden;
}

.logo-above-title img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.header h3 {
  text-align: center;
  color: #ff9e40;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.header h1 {
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 150%;
  color: #ffffff;
}

.learn-more > a > button {
  background: #f6821f;
  border-radius: 4px;
  border: none;
  width: 100%;
  margin-top: 30px;
  height: 55px;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

.logo-container {
  display: flex;
  flex-direction: row; /* Align logos in a row */
  justify-content: center;
  align-items: center;
  gap: 20px; /* Add space between logos */
  margin: 40px 0;
}

.logo-container img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/* Fix for Chrome on iOS */
@supports (-webkit-touch-callout: none) {
  .container {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
  }
}

/* Safari Mac Fix */
@media not all and (min-resolution:.001dpcm) {
  @supports (-webkit-appearance:none) {
    .container {
      height: 100vh;
      overflow: hidden;
    }
  }
}

@media screen and (max-width: 600px) {
  .container {
    padding: 20px;
    min-height: 100vh;
  }

  .header h1 {
    font-size: 1.8rem;
  }

  .header h3 {
    font-size: 1.2rem;
  }

  .learn-more button {
    width: 100%;
    margin-top: 15px;
  }
}
