body{
    margin: 0;
    padding: 0;

    font-family: "Helvetica Neue", Helvetica, sans-serif;
    
    overflow: hidden;
}

header{
    
    min-width: 100vw;
    min-height: 10vh;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    font-size: 1.8em;
    letter-spacing: -0.15em;
    line-height: 1.8em;
}

a{
    text-decoration: none;
    color: blue;
}

a:hover{
    color: red;
}



header h1{
    z-index: 10;
    background-color: #fff;
    margin: 0;
    position: fixed;
    top: 5px;
    color: #000;
   
}

content{
    max-height: 70vh;
    min-width: 100vw;
    display: flex;
    justify-content: center;
    align-content: flex-end;
  
}

content img{
    object-fit: contain;
    

}


footer{
    
    position: fixed;
    bottom: 0;
    font-weight: bold;

    
    background-color: #fff;
   
}

footer ul{
    margin: 0;
    padding: 0;
    min-width: 100vw;
    display: flex;
    justify-content: space-around;  
    align-content: center;
    list-style: none;
}
