@import url(https://fonts.googleapis.com/css?family=PT+Sans+Narrow);
@import url(https://fonts.googleapis.com/css?family=Loved+by+the+King);
/* Animation stuff */
@-webkit-keyframes fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3em);
            transform: translateY(3em);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3em);
            transform: translateY(3em);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fade-up {
  -webkit-animation: fade-up 4s cubic-bezier(0.05, 0.98, 0.17, 0.97) forwards;
          animation: fade-up 4s cubic-bezier(0.05, 0.98, 0.17, 0.97) forwards;
}

/* Visual styling */
html {
  background-image: -webkit-linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
  background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
  height: 100%;
  width: 100%;
  mix-blend-mode: source-over;
  overflow: hidden;
}

body {
  font-size: 18px;
  height: 100%;
  width: 100%;
  color: cornsilk;
  font-family: 'PT sans narrow', sans-serif;
  text-align: justify;
  -webkit-font-smoothing: antialiased;
  webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
}

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

.content {
  height: 100%;
  width: 100%;
  margin: 2rem auto auto;
  padding: 10%;
  opacity: 1;
  box-sizing: border-box;
 overflow-y: auto;
}

h1 {
  font-weight: 200;
  font-size: 4rem;
  line-height: 1;
  font-family: 'Loved by the King', cursive;
  margin: 1rem auto auto;
}

h1, h2, h3 {
  text-align: left;
  color: rgba(228, 240, 168, 0.9);
  text-shadow: 1px 1px 1px #111;
}

.ft {
  font-weight: 100;
  font-size: 1.4rem;
  font-family: 'Loved by the King', cursive;
}

.small {
  font-size: 1.1em;
}

p {
  font-size: 1.4em;
  font-weight: 100;
  line-height: 1.5em;
  text-shadow: 1px 1px 1px #000;
}

blockquote {
  display: block;
  padding: 15px 20px 15px 45px;
  margin: 0 0 10px;
  position: relative;
  /*Font*/
font-size:1.8em;
  line-height: 1.2;
  color: cornsilk;
  text-shadow: 1px 2px #111;
  text-align: justify;
  /*Borders - (Optional)*/
  border-left: 1px solid #c76c0c;
  border-right: 1px solid #c76c0c;
  /*Box Shadow - (Optional)*/
  box-shadow: 1px 1px 4px #ccc;
}

blockquote::before {
  content: "";
  /*Unicode for Left Double Quote*/
  /*Font*/
  font-weight: bold;
  color: #999;
  /*Positioning*/
  position: absolute;
  left: 10px;
  top: 5px;
}

blockquote::after {
  /*Reset to make sure*/
  content: "";
}

h1.fade-up, h2.fade-up {
  opacity: 0;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

p.fade-up {
  opacity: 0;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.back a {
  display: block;
  height: 2rem;
  z-index: 6;
  position: fixed;
  font-family: 'Loved by the King', cursive;
  font-size: 3rem;
  top: 0rem;
  right: 1rem;
  color: tomato;
  text-decoration: none;
  text-shadow: 1px 1px 1px #111;
  mix-blend-mode: difference;
}

#background_2 {
  background-image: url(http://www.lacor.info/film/academie_des_muses/img/g/2);
  background-color: #e6a21a;
  background-blend-mode: multiply;
  background-position: center 2%;
  background-size: cover;
  -webkit-filter: blur(9px) grayscale(0.3) hue-rotate(1.27224deg) brightness(1.1) contrast(1.2);
          filter: blur(9px) grayscale(0.3) hue-rotate(1.27224deg) brightness(1.1) contrast(1.2);
  position: fixed;
  z-index: 0;
  -webkit-transition: background-image 1000ms ease-in-out 500ms, background-color 1000ms cubic-bezier(0.09, -1.34982, 0.01, -0.87194) 500ms;
  transition: background-image 1000ms ease-in-out 500ms, background-color 1000ms cubic-bezier(0.09, -1.34982, 0.01, -0.87194) 500ms;
  top: -18px;
  right: -18px;
  bottom: -18px;
  left: -18px;
}
#background_2:hover {
  background-image: url(http://www.lacor.info/film/academie_des_muses/img/h/2);
  background-size: cover;
  background-position: left bottom;
  -webkit-transition: 2000ms ease-in all;
  transition: 2000ms ease-in all;
  -webkit-filter: contrast(1.1) brightness(1.3) blur(1px);
          filter: contrast(1.1) brightness(1.3) blur(1px);
}

@media (max-width: 600px) {
  .content {
    display: block;
    width: 98%;
    max-width: 350px;
    margin: 2%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 20px;
  }

  .content {
    padding: 15%;
  }
}
@media (min-width: 600px) {
  body {
    font-size: 18px;
  }

  .content {
    padding: 12%;
  }
}
