* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #58595b;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

header {
  background: white;
  margin: 2rem 0;
}

.site-logo {
  max-width: 140px;
}

.worldmap {
  background: linear-gradient(90deg, #1e365e, #1e365e 33%, #095494);
  padding: 4rem 0;
  overflow: hidden;
  width: 100%
}

.introduction {
  margin: 6rem 0;
}

.introduction p {
  max-width: 75%;
}

@media screen and (max-width: 768px) {
  .introduction p {
    max-width: 100%;
  }
}

.stats {
  background: #f3f3f3;
  margin: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 4rem 0;
}

@media screen and (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

h1 {
  font-size: 2.6rem;
  color: #1e365e;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.number {
  color: #1e365e;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat {
  margin: auto;
}

@media screen and (max-width: 768px) {
  .stat {
    width: 100%;
  }
}

.stat p {
  font-size: 18px;
}


@keyframes strokePulse {
  0% {
    stroke-width: 2;
  }
  50% {
    stroke-width: 4;
  }
  100% {
    stroke-width: 2;
  }
}

.site-footer {
  background-color: #001322;
  padding: 2rem 0;
  text-align: center;
}

.site-footer p {
  color: #bbbdbf;
  margin: 0;
  font-size: 12px;
}

.status-au {
  position: absolute;
  top: 90%;
  right: 10%;
}

iframe {
  background: linear-gradient(to right, #3b4254, transparent);
  border-radius: 5px;
}

.status-badge {
  width: 100%;
}

.status-badge a {
  top: -25px;
  position: absolute;
  left: 21px;
  color: white;
  font-size: 14px;
  width: fit-content;
  background: #3576b2;
  padding: 12px 10px 13px 10px;
  line-height: 0;
  border-radius: 5px 5px 0 0;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
}