* {
  box-sizing: border-box;
}

body {
  font-family: Jura, monospace;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  color: #000;
  margin: 0;
  background:url(../img/bg.jpg) fixed no-repeat bottom left;
  background-size: auto 100vh;
}

.page {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 2vh 5vh 1.5vh;
  overflow: hidden;
}

.c, .s {
  flex: 0 1;
  line-height: 90%;
}

.c {
  font-size: 25vh;
  color: #1f0d0d;
  margin-top: -1vh;
}

.s {
  font-size: 20vh;
  text-align: right;
  color: rgba(128,0,0,1);
}

@media (max-width: 850px) {
  .page {
    padding: 0.5vh 2vh 2.5vh 1.5vh;
  }
  .c {
    font-size: 18vh;
    margin-top: 0;
  }
  .s {
    font-size: 15vh;
  }
}

@media (max-width: 800px) and (min-height: 600px){
  body {
    background-position: left -150px bottom;
  }
}
