@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@keyframes fadein{
    from{
        opacity: 0;
    }
    to{
        opacity: 0.9;
    }
}
header {
width: 100% ; 
height: 100px; 
background-image: url(/static/images/banner2.jpg);
background-position: center right;
position: fixed;
top: 0;
left: 0;
z-index: 1000;
}
header h1{
   color:white;
   text-shadow: 2px 2px 1px rgba(0,0,0,1.3);
    font-family: 'Pacifico',cursive;
    margin: 000;
    animation: 2s ease-in 0s 1 fadein;
}
header h2{
    color:white;
    text-shadow:2px 2px 1px rgba(0,0,0,7);
     font-family: 'Pacifico',cursive;
     margin: 0;
    animation: 2s ease-in 0s 1 fadein;
 }
header img{
    width: 95px;
    height: 95px;
    float: left;
    margin: 5px 0 0 10px;
}
header a.button{
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    text-decoration: none;
    height: 2.5em;
    line-height: 2.5em;
    padding: 0 2em;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
    box-shadow: inset 0 0 0 2px  rgba(255, 255,255, 0.18);
    border-radius: 6px;
    
}
header a.button:hover{
    box-shadow: inset 0 0 0 2px rgba(255, 255,255, 1)
}
footer{

    position: fixed;;
    bottom: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: rgba(255, 255,255, 0.8);
    text-align: center;
    z-index: 125;
    font-size: 30px;
}
footer a{
    color: black;
    text-decoration: none;
    padding: 8px;
}
@media (max-width: 500px){
    header h1,h2{
        display: none;
    }
}
