html,
body {
  background-color: rgb(33, 33, 33);
  background-image: radial-gradient(100% 200% at 50% -10%, #4f535a 0, rgb(33, 33, 33) 50%);
  background-attachment: fixed;
  color: #eee;
  height: 100vh;
  margin: 0;
}

.flex-center {
  display: flex;
  padding-top: 3.5rem; /* Navbar allowance 56px */
}

.position-ref {
  position: relative;
}

.full-height {
  height: 100vh;
}

.content {
  margin: auto; /* Better way to handle centering with flex due to overflow */
  text-align: center;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  padding-bottom: 3.5rem; /* Vertical center compensate for Navbar */
  padding-top: 0.6rem;
}

.title {
  font-size: 5rem;
}

.slogan {
  font-size: 1.5rem;
  max-width: 30rem;
}

@media (min-width: 740px) {
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }
}

.navbar {
  border-bottom: 1px #7f868a solid;
}

.navbar-dark .navbar-nav .nav-link {
  color: #b9c4ca;
  transition: all 0.3s;
}

.nav-link {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .1rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: lime;
  text-decoration: underline;
}

.slickfont {
  font-family: 'Nunito', sans-serif;
  font-weight: 200;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="search"]:focus {
  background-color: rgba(255, 255, 255, .15);
  color: #eee;
}

.PubLabel {
  color: #c4c4c4;
  margin-bottom: 4px;
}

.PubInput {
  background-color: rgba(255, 255, 255, .15);
  color: #eee;
  border: 1px solid rgba(42, 42, 42, .6);
  padding: 1rem .75rem;
  height: 3.5rem;
  border-radius: .25rem;
  width: 100%;
}

.alert-red {
  color: #fff;
  background-color: #cc6666;
  border-color: #e2aaaa;
}