@import url("https://fonts.googleapis.com/css?family=Oswald|Bad+Script|Libre+Caslon+Display|Galada|Nixie+One|Poiret+One");

* {
 margin: 0;
 padding: 0;
 font-family: 'Poiret One', sans-serif;
}

h1,h2 {
  color: white;
}
h1 {
  font-size: 360%;
  text-align: center;
}
h2 {
  font-size: 200%;
}
body {
  background-color: #161616;
  color: white;
  /*overflow: hidden;*/
  position: fixed;
  width: 100%;
  height:100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.clickable{
  cursor: pointer;
}


object {
    pointer-events: none;
}

.background{
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
}

#blurdiv{
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  animation-name: blurappear;
  animation-duration: 5s;
  animation-fill-mode: forwards; 

  background:  linear-gradient(0.25turn, rgba(200,200,200,0.1),rgba(0,0,0,0.5),rgba(200,200,200,0.1)), url("../images/bar.png");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-attachment:fixed; 
}

@keyframes blurappear {
  0%   {width: 100%;
   height: 100%;
   background:  linear-gradient(0.25turn, rgba(200,200,200,0.0),rgba(0,0,0,0.5),rgba(200,200,200,0.0)), url("../images/bar.png");
   background-repeat: no-repeat;
   background-size: cover;}     
   100%  {width: 100%;
    height: 100%;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    background:  linear-gradient(0.25turn, rgba(200,200,200,0.1),rgba(0,0,0,0.5),rgba(200,200,200,0.1)), url("../images/bar.png");
    background-repeat: no-repeat;
    background-size: cover;}
  }

.languages_div{
  position: fixed; 
  z-index: 100;
  right: 4%; 
  top: 10px; 
}

.languages_div select{
    font-size: 40px;
}

@media only screen and (orientation : landscape)  { 

  .languages_div{
    position: absolute; 
    right: 2%; 
    top: 4px; 
  }

  .languages_div select{
    font-size: 20px;
  }
}

