@import "fonts.css";

html{
  height: 100%;
}

body{
  font-family: 'Futura',sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  min-height: 100%;
}

.container{
  padding: 20vh 10vw 15vh 10vw;
}

.container *{
  visibility: hidden;
}

.visible{
  visibility: visible;
}

.work-title{
  margin: 0;
  color: #ff5252;
  font-family: 'Oswald',sans-serif;
  font-size: 3.6em;
  animation: fadeInRight 1.5s;
}

.work-link{
  color: #ff5252;
}

@-webkit-keyframes fadeInDown {
    from {opacity: 0; top: 0px;}
    to   {opacity: 1;top: 100px;}
}

@-moz-keyframes fadeInDown {
    from {opacity: 0; top: 0px;}
    to   {opacity: 1;top: 100px;}
}

@-o-keyframes fadeInDown {
    from {opacity: 0; top: 0px;}
    to   {opacity: 1;top: 100px;}
}

@keyframes fadeInDown {
    from {opacity: 0; top: 0px;}
    to   {opacity: 1;top: 100px;}
}

#year{
  position: fixed;
  top: 100px;
  left: -120px;
  transform: rotate(90deg);
  display: block;
  font-family: 'Futura',sans-serif;
  font-weight: 800;
  font-size: 8em;
  color: #ffd5ce;
  z-index: -1000;
  animation: fadeInDown 1s;
}

p{
  line-height: 1.7;
  word-break: break-word;
}

.title-info{
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8em;
  font-weight: 800;
}

.title-info::before{
  content: '';
  width: 50%;
  height: 5px;
  z-index: -1;
  background: #ffd5ce;
  position: absolute;
  left: 0;
  bottom: 2px;
}

nav{
  position: fixed;
  bottom: -1px;
  width: 100%;
  height: 60px;
  background: #fff;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, .1);
}

li{
  list-style: none;
  width: 33.33vw;
  float: left;
  line-height: 60px;
  text-align: center;
}

nav img{
  margin: 0 auto;
  vertical-align: middle;
}

.picture{
  width: 100%;
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}

@-moz-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}

@-o-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}

.slideUp{
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in;
  -webkit-animation-timing-function: ease-in;
  visibility: visible !important;
}
