html {
  font-size: 1rem;
}

@media (min-width: 350px) {
  html {
    font-size: 1.1rem;
  }
}

@media (min-width: 576px) {
  html {
    font-size: 1.2rem;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 1.4rem;
  }
}

@media (min-width: 992px) {
  html {
    font-size: 1.9rem;
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 2.2rem;
  }
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3b93da+0,db3f3c+100 */
  background: #3b93da;
  /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, #3b93da 0%, #db3f3c 100%);
  /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, #3b93da 0%, #db3f3c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: repeating-radial-gradient(ellipse at center, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05) 4%), radial-gradient(ellipse at center, #3b93da 0%, #db3f3c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b93da', endColorstr='#db3f3c', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  background-attachment: fixed;
  background-size: 300% 220%;
  background-position: 0% 100%;
  font-family: 'Lora', serif;
  color: white;
}

body.transition {
  transition: background-position 0.5s ease-in-out
}

.transition {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

#brand-img {
  position: fixed;
  top: 1rem;
  width: 300px;
  max-width: 60%;
}

.top #brand-img {
  opacity: 0;
}

#brand-footer {
  position: fixed;
  bottom: 1rem;
}

.top #brand-footer {
  opacity: 0;
}

.h100 {
  height: 100vh;
  position: relative;
}

.h100 article {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.h100 article .top {
  position: absolute;
  right: 1em;
  bottom: 1em;
}

.h100 article .top a {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  color: black;
  text-decoration: none;
  background: white;
  padding: 0.5em;
  border-radius: 3px;
  zoom: 1;
  filter: alpha(opacity=30);
  opacity: 0.3;
}

.h100 article .top a:hover {
  zoom: 1;
  filter: alpha(opacity=100);
  opacity: 1;
}