* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue",  Arial, sans-serif;
  text-shadow: 0 1px 0 rgba(0,0,0,0.25);
  margin: 0;
  border: none;
}

html, body {
  background-color: #242628;
}

.container {
  display: flex;
  min-height: 100vh;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  background-image: url(./assets/world.svg);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-origin: padding-box;
  background-size: cover;
  color: #fff;
  line-height: 1.5em;
}

main {
  padding: 25px;
  max-width: 750px;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 0 20px 0;
}

a {
  font-weight: bold;
  color: #eb5463;
}

a:hover {
  color: #fff;
}

p {
  margin: 10px 0;
}

h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-left: -25px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.learn-more {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 25px;
}

.learn-more > a > button {
  background: #D33847;
  border-radius: 4px;
  border: none;
  width: 114px;
  height: 32px;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  box-shadow: 0px 0px 0px 1px rgba(20, 20, 20, 1);
  cursor: pointer;
}

.learn-more > a > button:hover {
  background: #FF3847;
}

@media screen and (max-width: 600px) {
  body {
    width: 100vw;
  }

  h1 {
    font-size: 2rem;
    margin: 0 0 10px -20px;
  }

  h3 {
    font-size: 1.2rem;
  }
}

.has-detail {
    display: inline;
}
