/* @import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,400i,500,600&display=swap'); */
@import url("https://use.typekit.net/iat3jmz.css");

body {
    background: 
      linear-gradient(
        rgba(56, 74, 61, 0.45), 
        rgba(56, 74, 61, 0.45)
      ),
      url('assets/chemin.jpeg') 
      no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
    font-family: alegreya,serif;
    font-weight: 400;
    font-style: normal;
}

.title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10vh;
    height: 80vh;
    color: #BFA288;
    opacity: 0.8;
}

@media only screen and (max-device-width: 767px) {
    .title {
        font-size: 8vh;
    }    
}

.focus-in-expand {
	-webkit-animation: focus-in-expand 5s cubic-bezier(0.215, 0.610, 0.355, 1.000) ;
    animation: focus-in-expand 5s cubic-bezier(0.215, 0.610, 0.355, 1.000) ;
}


/* ----------------------------------------------
 * Generated by Animista on 2020-2-16 20:10:30
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation focus-in-expand
 * ----------------------------------------
 */
 @-webkit-keyframes focus-in-expand {
    0% {
      letter-spacing: -0.5em;
      -webkit-filter: blur(12px);
              filter: blur(12px);
      opacity: 0;
    }
    100% {
      -webkit-filter: blur(0px);
              filter: blur(0px);
      opacity: 1;
    }
  }
  @keyframes focus-in-expand {
    0% {
      letter-spacing: -0.5em;
      -webkit-filter: blur(12px);
              filter: blur(12px);
      opacity: 0;
    }
    100% {
      -webkit-filter: blur(0px);
              filter: blur(0px);
      opacity: 1;
    }
  }
  