@media screen and (max-width: 850px) {
    
    
html {
    scroll-behavior: smooth;
}

html,body {
    height: 100%;
}
    
/********************** HEADER **********************/

header {
    position: fixed;
    width: 100%;
    top: 0;
    background-color:white;
    height: 45px;
    z-index: 10;
}

.header1 {
    float: left;
    padding: 5px 15px 15px 15px;  
    background-color: white;
    height: 45px;
}

.header2 {
    float: right;
    padding: 5px 15px 15px 15px;  
    height: 45px;
        background-color: white;
}

h1 {
    font-family: "Monument Grotesk Reg", sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.3;
    color: #111;
}


h1 a {
    color: black;
    text-decoration: none;
}


/********************** CONTAINER 2 **********************/

.info {
    top: 35px;
    padding: 5px 15px 15px 15px;  
}

li {
    font-family: "Monument Grotesk Reg", sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.3;
    list-style: none;
    }

li a:active {
    color: blue;
}


/********************** FOOTER **********************/

footer {
    background: white;
    position: fixed;
    width: 100%;
    height: 242px;
    right: 0;
    bottom: 0;
    left: 0;    
    padding: 15px 15px 20px 15px;
        font-family: "Monument Grotesk Reg", sans-serif;
        font-size: 14px;
        line-height: 1.3;
        color: #111;
}
    
.foot-group-1 {
        height: 95px;
    padding-top: 20px;
    padding-top: 10px;
    padding-bottom: 0px;
    animation: mymove .5s ease-in;
    border-top: 0px solid black; 
    }
    
    .foot-group-2 {
    height: 75px;
    padding-top: 0px;
    padding-bottom: 30px;
    animation: mymove .2s ease-in;
    border-top: 0px solid black; 
    }
    
    .foot-group-3{
        float: left;
        width: 95%;
        margin-top: 90px;
        height: 20px;
        padding: 8px 8px 8px 0px;
        font-size: 11px;
        position: absolute;
    animation: mymove 0s linear;
    border-top: 0.5px solid grey; 

    }

    .column1, .column2 {
        float: left;
        width; 30px;
        padding-left: 0px;
        padding-top: 0px;
        margin-left: 0px;
        margin-top: 0px;
    }

.foot1 a{
    color: #111;
    text-decoration: underline;
}
    
.foot1 a:active {
    text-decoration: underline;
    }

.foot1, .foot2 {
    width: 80%;
    padding: 0px;
}
    
@-webkit-keyframes mymove {
  from {top: 350px;}
  to {top: 0px;}

