@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro);

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

html {
    background-size: cover !important;
    font-family: 'Source Sans Pro', sans-serif;
}
a:active, a:focus, a:hover, a:link, a:visited {
    outline: 0;
    text-decoration: none;
}
a:hover {
    color: #f97352;
}
a {
    color: #2e2e2e;
    cursor:pointer;
}
.body {
    width:700px;
    height:100%;
}
img {
    max-width:400px;
    display:block;
}
.contact {
    width:300px;
}
.center {
    margin: 0 auto;
}
#google-map {
    width:100%;
    height:100%;
}
.panda {
    background: url(http://avicom-preprod.fr/images/half-panda.png) no-repeat;
    background-size:100% auto;
    position:fixed;
    height:100%;
    width:30%;
    z-index:1;
    right:0;
    top:0;
}
.container-arrow {
    margin-top:20%;
}
.arrows {
    -webkit-animation: my_animation 2s infinite linear;
    -moz-animation: my_animation 2s infinite linear;
    -ms-animation: my_animation 2s infinite linear;
    -o-animation: my_animation 2s infinite linear;
    position:relative;
    cursor:pointer;
    width:100px;
}
@-webkit-keyframes my_animation {
    0% {
        top: 0
    }

    50% {
        top: 15px
    }

    100% {
        top: 0
    }
}

@-moz-keyframes my_animation {
    0% {
        top: 0
    }

    50% {
        top: 15px
    }

    100% {
        top: 0
    }
}

@-o-keyframes my_animation {
    0% {
        top: 0
    }

    50% {
        top: 15px
    }

    100% {
        top: 0
    }
}

@keyframes my_animation {
    0% {
        top: 0
    }

    50% {
        top: 15px
    }

    100% {
        top: 0
    }
}
@media screen and (device-aspect-ratio: 40/71)  {
    h1 {
        font-size: 4em;
    }
    h4 {
        font-size: 2.5em;
    }
    p {
        font-size: 2.4em;
    }

    .panda {
        background: none;
    }

    img {
        max-width:100%;
        display:block;
    }

    .arrows {
        width: 300px;
    }
}
@media screen and (device-aspect-ratio: 40/71) and (orientation : landscape)   {
    h1 {
        font-size: 2em;
    }
    h4 {
        font-size: 1.2em;
    }
    p {
        font-size: 1em;
    }

    .panda {
        background: none;
    }

    img {
        max-width:200px;
        display:block;
    }

    .arrows {
        width: 200px;
    }

    .container-arrow {
        margin-top:30px;
    }
}