*, ::after, ::before {
  box-sizing: border-box;
}

html, body {height: 100%;}
body {
  background-image: url(/static/images/background.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "adelphi-pe-variable", sans-serif;
  color: #fff;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
    width: 100%;
    max-width: 640px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.muted {
  opacity: 0.7;
  font-size: 0.9rem;
}

.logo {
    margin-bottom: 3rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 .5rem 0;
}

p {
    font-size: .9rem;
    font-weight: 300;
    margin: 0px;
}

