* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
:root {
  --primary-blue: #233c4f;
  --blue-1: #165a72;
  --blue-2: #51abcb;
  --nav-blue: #c5cacb;
  --primary-gray: #777;
  --light-gray: #f2f2f3;
  --lighter-gray: #f7f7f8;
  --lite-gray: #e0e0e0;
  --lite-blue: #c3d1dc;
}
body {
  font-size: 1.1rem;
  line-height: 1.75em;
  color: var(--primary-blue);
  background: var(--lighter-gray);
  min-height: 100dvh;
  transition: 0.4s;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: var(--primary-blue);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
}
button {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.4s;
  font-size: 16px;
}
.selectDisable {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.container {
  width: 100%;
  min-height: calc(100dvh - 4rem);
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  padding: auto 2rem;
  transition: 0.5s ease-in-out;
  overflow: hidden;
}
.container h2 {
  font-size: 3rem;
  font-weight: 600;
  padding: 1rem;
  line-height: 1.3em;
}
.container p {
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 680px;
  margin: .25rem .75rem;
}

/* Footer */
.footer {
  height: 4rem;
  align-items: center;
  justify-content: center;
  display: flex;
  border-top: 1px solid var(--lite-blue);
  font-size: 1rem;
  text-align: center;
  margin: 0 1rem;
}
@media screen and (max-width: 680px) {
  .container h2 {
    font-size: 2rem;
  }
}