/*******************/
/* GENERAL CLEANUP */
/*******************/
@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700');

* {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
  text-shadow: 0 1px 0 #000;
}

emphasis {
  background-color: #54578a;
  opacity: 0.75;
  padding: 10px;
  outline: solid grey 4.5px;
}

div {
  display: none;
}

html, body { 
  background: url(background.png) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100%;
}

#graphic {
  max-width: 190px;
  padding-left: 50px;
  padding-top: 25px;
  opacity: 0.75;
  display: inline-block;
}

a {
  text-decoration: none;
  color: white;
  padding: 5px;
}

a:hover {
  opacity: 0.5;
  transition-duration: 0.25s;
}

#wellandelsmall:hover {
  opacity: 0.5;
  transition-duration: 0.25s;
}

b {
  font-weight: 500;
}

#wld span { 
  font-size: 10px; 
  font-weight: bold; 
}
#wld i:first-child { 
  font-weight: bold; 
}

#footer-description {
  font-size: 3em;
  color: white;
  text-align: center;
  padding: 20px;
}

#logo, #graphic {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

/*******************/
/*   MAIN STYLE    */
/*******************/

h1 {
  font-weight: 100;
  color: white;
  line-height: 1.75;
  text-align: center;
  opacity: .75;
  font-size: 2.5em;
}

h2 {
  font-weight: 100;
  color: white;
  text-align: center;
  font-size: 2em;
}

h3 {
  font-weight: 200;
  color: white;
  padding-left: 45px;
  opacity: 0.5;
  font-size: 1.85em;
}

h4 {
  font-size: 1.45em;
}

#desc {
  padding-right: 120px;
  padding-left: 120px;
  padding-bottom: 30px;
}

#logo {
  width: 75%;
  max-width: 600px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: -50px;
}

#wld {
  color: white;
  font-size: 1.2em;
  position: absolute;
  padding-left: 50px;
}

footer {
  background-color: #54578a;
  opacity: 0.75;
  margin: 0;
  width: 100%;
  position: fixed;
  bottom:0;
  left:0;
  border-top: solid grey 4.5px;
}

/*******************/
/*   RESPONSIVE    */
/*******************/

@media (min-width: 1200px) {
    #description-mobile {
    display: none;
  }
}

@media (max-width: 1200px) {

  #description-desktop {
    display: none;
  }

  #wld {
    display: none;
  }

  #logo {
    display: none;
  }

  footer {
    display: none;
  }

  h1 {
    font-size: 1.75em;
  }

  #graphic {
    max-width: 70%;
    padding: 0;
    opacity: 0.75;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  h3 {
    font-weight: 200;
    color: white;
    text-align: center;
    padding: 0;
    opacity: 0.5;
    font-size: 1.5em;
  }

  #desc {
    padding: 15px;
  }
}


/****************LOGO ANIMATION**************/


#logo {
  animation: bounceIn 0.6s;
  transform: rotate(0deg) scale(1) translateZ(0);
  transition: all 0.4s cubic-bezier(.8,1.8,.75,.75);
}

#logo:hover {
  opacity: 0.9;
}

@keyframes bounceIn {
  0% {
    opacity: 1;
    transform: scale(.3);
  } 

  50% {
    opacity: 1;
    transform: scale(1.05);
  } 

  70% {
    opacity: 1;
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}