/**
 * @copyright 2018 Sebastian Jacob
 */
html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
}
div#content {
  margin: 20px;
  width: 100%;
  background-color: white;
  color: black;
  font-family: "Century Gothic", SansSerif;
}
h1 {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #383a39;
}
h1 span {
  border-bottom: 3px solid #574533;
  color: #574533;
  padding: 10px 20px;
}
p {
  margin: 0;
  padding: 20px;
}
@media screen and (min-width: 320px) {
  body {
    background-color: #8b8279;
    background-size: cover;
  }
  div#content {
    background-color: rgba(255, 255, 255, 0.5);
    width: 280px;
    position: absolute;
    right: 20px;
    bottom: 20px;
  }
}
@media screen and (min-width: 1024px) {
  body {
    background-image: url('../img/background_small.jpg');
  }
  div#content {
    width: 800px;
  }
}
@media screen and (min-width: 1280px) {
  body {
    background-image: url('../img/background.jpg');
  }
  div#content {
    width: 1024px;
  }
}
