html {
  flex: 1;
  width: 100%;
  height: 100%;
  display: flex;
}

body {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #eee;
  font-family: "Montserrat-Medium", "Montserrat", sans-serif;
}
body .wrapper {
  flex: 1;
  display: flex;
  max-width: 400px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
body .wrapper .logo {
  max-width: 300px;
}
body .wrapper h1 {
  font-size: 22px;
  margin: 3em 0 0 0;
}
body .wrapper h2 {
  font-size: 26px;
  margin: 3em 0 0 0;
}
body .wrapper .helplist {
  width: 100%;
  min-height: 2em;
  overflow: hidden;
  position: relative;
}
body .wrapper .helplist li {
  opacity: 1;
  width: 100%;
  right: -100%;
  font-size: 26px;
  list-style: none;
  position: absolute;
  text-align: center;
  transition: right 0.5s ease-in-out, opacity 0.5s ease-in-out 0.5s;
}
body .wrapper .helplist li.current {
  right: 0;
}
body .wrapper .helplist li.clear {
  right: 100%;
  opacity: 0;
}
body p {
  margin: 0.5em 0;
  text-align: center;
}
body p br {
  display: none;
}
@media screen and (max-width: 768px) {
  body p br {
    display: block;
  }
}
body a {
  color: #000;
  text-decoration: underline;
}
body a:hover {
  color: #333;
  text-decoration: none;
}
body a:focus {
  border-radius: 4px;
  outline: 2px solid #00f;
}