/*@import url('https://fonts.googleapis.com/css?family=Exo+2'); */

@font-face {
  font-family: "Againts";
  src: url("../fonts/againts.eot?") format("eot"), url("../fonts/againts.woff") format("woff"), url("../fonts/againts.ttf") format("truetype"), url("../fonts/againts.svg#Againts") format("svg");
  font-weight: normal;
  font-style: normal;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  text-align: center;
  background: #454d5d 50% url(../images/03.jpg);
  background-size: cover;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
}

.logo,
.title,
.description,
.nav {
  visibility: hidden;
}

.logo {
  width: 16.5rem;
  height: 12.5rem;
  margin: 0 auto;
  animation: fadeIn 1s ease 0s forwards;
}

.container{
  /* margin-top: 8%;
  margin-left: 35%;
  position: absolute; */
}

.title {
  font-family: Againts;
  font-size: 5rem;
  font-weight: 100;
  margin: 0 0 1rem;
  color: #fff;
  margin-top: 60px;
  text-shadow: 0 0 .5rem rgba(0, 0, 0, .8);
  animation: fadeIn 1s ease .25s forwards;
}

.description {
  font-family: Againts;
  font-size: 2rem;
  margin: 0 0 4rem;
  color: #eee;
  text-shadow: 0 0 .5rem rgba(0, 0, 0, .6);
  animation: fadeIn 1s ease .25s forwards;
}

.nav {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
  animation: fadeIn 1s ease .5s forwards;
}

.nav li + li::before {
  margin: .5rem;
  content: "·";
  color: #aaa;
}

.nav a {
  font-family: 'Exo 2', sans-serif;
  transition: color .5s, text-shadow .5s;
  text-decoration: none;
  color: #99e9f2;
}

.nav a:hover {
  color: #22b8cf;
  text-shadow: 0 0 .5rem rgba(255, 255, 255, .5);
}

.nav a:focus {
  color: #3bc9db;
  outline: 0;
  text-shadow: 0 0 .5rem rgba(255, 255, 255, .5);
}

.bottom_layer {
    width: 100%;
    /*min-width: 1250px;*/
    position: fixed;
    z-index: 302;
    bottom: 0;
    left: 0;
    height: 40px;
    overflow: hidden;
    zoom: 1;
    margin: 0;
    text-align: left;
    line-height: 40px;
    font-size: 0.5rem;
    color: #696969;
    /* justify-content: left;*/
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(2rem) scale(.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
  }
}
