* {
  box-sizing: border-box;
}
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}
.background {
  background:#000;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.background > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 50px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
h1, h2 {
  font-family: Arial, sans-serif;
  color: #FFF;
  font-weight: normal;
}
h1 {
  font-size: 90px;
  font-style: italic;
}
h2 {
  font-size: 36px;
}
a {
  color: #FFF;
}
.emph {
  font-weight: bold;
}
img.logo {
  width: 100%;
  max-width: 609px;
  height: auto;
}
/* MEDIA */
@media (max-width: 700px) {
  .content {
    padding-left: 25px;
    padding-right: 25px;
  }
  h1 {font-size: 75px;}
  h2 {font-size: 30px;}
}
@media (max-width: 470px) {
  .content {
    padding-left: 10px;
    padding-right: 10px;
  }
  h1 {font-size: 40px;}
  h2 {font-size: 20px;}
}
