* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  line-height: 1.7;
  background-image: url('images/bg-opt.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

body {
  position: relative;
  color: #ccc;
  min-height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  display: inline;
  font-family: 'Hedvig+Letters+Serif', sans-serif;
  padding: 10px;
  color: #ccc;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
}

/*      p, h4, h3, h2, h1         */
/* 16, 18, 21, 24, 36, 48, 60, 72 */

h1 {
  font-size: 4.8rem;
}

h3 {
  font-size: 2.1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.25;
}

.wrapper {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding-top: 120px;
}

.align-right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

@media only screen and (min-width: 460px) {
  h1 {
    font-size: 6rem;
  }
    
  h3 {
    font-size: 3.2rem;
  }
}

@media only screen and (min-width: 550px) {
  .wrapper {
    position: absolute;
    width: calc(100% - 120px);
    top: 120px;
    right: 120px;
    padding-top: 0;
  }
}

@media only screen and (min-width: 728px) {
  h1 {
    font-size: 9.2rem;
  }
    
  h3 {
    font-size: 3.2rem;
  }
}

@media only screen and (min-width: 1024px) {
  h1 {
    font-size: 13.2rem;
  }
    
  h3 {
    font-size: 4.2rem;
  }
}

