*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  padding: 0;
  margin: 0;
}
body {
  background-color: #2f303a;
  font-family: poppins, sans-serif;
  font-size: 1.2rem;
  color: white;
  min-height: 100vh;
}
a {
  color: white;
  text-decoration: none;
}
.full-height-grow {
  display: flex;
  flex-direction: column;
}
.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  display: none;
}
.container {
  max-width: var(--max-content-width);
  /* margin: 0 auto; */
  padding: 60px 40px;
  align-items: center;
  flex-grow: 1;
}

.title {
  font-weight: 500;
  font-size: 3em;
  margin-bottom: 1rem;
  margin-top: 0;
}

.subtitle {
  font-weight: 500;
  font-size: 1.2em;
  margin-bottom: 2rem;
}

.btn {
  color: white;
  background-color: #1762a7;
  padding: 0.75rem 1.5rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-size: 0.9rem;
  border: none;
  outline: none;
}

.btn:hover {
  background-color: #147fe4;
  cursor: pointer;
}

.show {
  display: block;
}
