html {
  font-size: 62.5%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Helvetica, Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

.container {
  min-height: 100vh;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.7rem;
  background-color: #fff;
}

header {
  text-align: center;
  padding: 2.5rem 0;
}

.logo {
  max-width: 35rem;
  width: 100%;
}

.logo-2 {
  max-width: 12rem;
  margin: 0.5rem auto;
}

#logo {
  display: inline-block;
  width: 100%;
  height: 100%;
}

svg {
  width: 100%;
  height: auto;
}

.main-section {
  text-align: center;
}

.main-section h1 {
  color: #000;
  font-size: 2.6rem;
  line-height: calc(1ex / 0.42);
  margin: 0 auto 0 auto;
}

.main-section p {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.main-section ol {
  text-align: left;
  margin: 3rem auto 3rem auto;
  display: inline-block;
  color: #000;
  font-size: 2rem;
}

.main-section li {
  font-weight: 400;
  line-height: calc(1ex / 0.32);
}

p {
  color: #303030;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

mark {
  padding: 0.1rem 0.4rem;
  border-radius: 0.8rem 0.3rem;
  background: transparent;
  background-image: linear-gradient(
    to right,
    rgba(255, 252, 127, 0.2),
    rgba(255, 252, 127, 0.7) 7%,
    rgba(255, 252, 127, 0.3)
  );
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.center {
  align-items: center;
  text-align: center;
}

.cta-button {
  display: inline-block;
    margin: 0 auto 0 auto;
  padding: 1.5rem 4rem;
  background-color: #2697f4;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 100rem;
  font-size: 3.5rem;
  line-height: calc(1ex / 0.42);
  box-shadow: rgb(37 42 50/32%) 0 1px 4px 1px;
  cursor: pointer;
}

footer {
  font-size: 1.3rem;
  text-align: center;
  padding: 1rem 0;
}

footer p,a {
  color: #333;
  margin: 1rem;
  text-decoration: none;
}

.availability {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto 1rem auto;
}

.blob {
  margin: 0.5rem 0.5rem 0.3rem 0;
  height: 2rem;
  width: 2rem;
  border-radius: 100%;
  transform: scale(1);
  background: rgb(59, 165, 92);
  box-shadow: 0 0 0 0 rgb(59, 165, 92);
  animation: pulse 1.25s infinite;
}

.status-text {
  color: rgb(59, 165, 92);
  font-weight: 500;
  font-size: 2em;
  line-height: calc(1ex / 0.32);
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(59, 165, 92, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(59, 165, 92, 0);
  }

  100% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(59, 165, 92, 0);
  }
}
