body, html {
    height: 100%;
	margin:0;
	-webkit-box-sizing: border-box;
  	-moz-box-sizing: border-box;
  	box-sizing: border-box;
	font-family: 'Cormorant Garamond', serif;
	background-color: #fff;
	text-align:center;
    border: 2px solid #004d71;
}
*, *:before, *:after {
  	-webkit-box-sizing: inherit;
  	-moz-box-sizing: inherit;
  	box-sizing: inherit;
}
#wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -230%);
        width: 90%;
        max-width: 665px;
        opacity: 0;
    
    -webkit-animation: fade;
            animation: fade;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
	-webkit-animation-delay: 4s;
            animation-delay: 4s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards; /* or: backwards, both, none */
            animation-fill-mode: forwards; /* or: backwards, both, none */
     }  
#mask, .scribble {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 671px;
     }       
     .mask {
         z-index: 1;
     }
.path {
	-webkit-stroke-dasharray: 2000;
            stroke-dasharray: 2000;
    -webkit-stroke-dashoffset: 2000;
            stroke-dashoffset: 2000;
    -webkit-animation: dash;
            animation: dash;
    -webkit-animation-duration: 4s;
            animation-duration: 4s;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
	-webkit-animation-delay: 0s;
            animation-delay: 0s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards; /* or: backwards, both, none */
            animation-fill-mode: forwards; /* or: backwards, both, none */
}

@keyframes dash {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 2000;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#footer {
         position: fixed;
         left: 0;
         bottom: 20px;
         width: 100%;
         text-align: center;
}

ul, p, a {
    color: #004d71;
    font-size: 14px;
    padding-left: 0;
}
li {
        display:  inline-block;
        list-style: none;
        margin: 0 20px;
} 
a:hover {
    text-decoration: none;
}


@media (max-width: 566px) {	
	li {
        display: block;
        margin: 0px;
    } 
}
