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

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 165px 0 124px;
  width: 100%;
  margin: auto;
  height: 100vh;
  background-color: #242628;
  background-image: url(./assets/world.svg);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 70px;
  background-origin: padding-box;
}

.header h3 {
  text-align: center;
  color: #967bb6;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 36px;
}

.header {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
}

.header > h1 {
  font-weight: 600;
  font-size: 48px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
}

.header > p {
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
  margin: 16px 0px;
}

@media screen and (max-width: 1024px) {
  .container {
    background-size: contain;
    background-position-y: center;
  }
}

@media screen and (max-width: 600px) {
  .container {
    background-size: contain;
    background-position-y: center;
  }

  body {
    width: 100vw;
  }

  h1 {
    font-size: 1.6rem;
  }
}

.email-link {
  color: #7b9bb6; /* Default state */
}

.email-link:hover {
  color: #9bb67b; /* Green when hovered */
}

.email-link:focus {
  color: #b6967b; /* Brown when focused (e.g., tabbed to in a browser) */
}