html, body {
  overflow-x: hidden;
  min-height: 100%;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Source Sans Pro', sans-serif;
}

.view {
  overflow-x: hidden;
  overflow-y: auto;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-areas: "a";
  place-items: center;
  background-image:
    linear-gradient(
      to bottom,
      rgb(230, 230, 230) 0%,
      rgb(255, 255, 255) 60%
    );
}

.doormat {
  display: flex;
  width: 100%;
  height: 100%;
  flex-flow: column nowrap;
  place-content: center;
  place-items: center;
}

.logo {
  display: block;
  min-width: 160px;
  min-height: 160px;
  max-width: 50%;
  max-height: 50%;
  opacity: 0.95;
  margin: 0 auto;
}

.title {
  color: rgb(20, 20, 20);
  font-family: 'Exo 2', sans-serif;
  font-weight: bold;
  font-weight: 900;
  text-align: center;
}