

html {
    position: relative;
    min-height: 100%;
    height: 100%;
}

body{

    background: linear-gradient(0, #c69c59, #d1a153);
    min-height: 100%;
    height: 100%;
    margin: 0 0 -100px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

header{
    padding: 2% 4%;
}

header img{
    margin-left: 1.5%;
    margin-bottom: 2%;
    max-width: 13%;
}

header nav{
    display: flex;
}

header nav a{
    color: #ffffff;
    padding: 1.1%;
    margin-top: 1%;
    text-decoration: none;
    font-family: 'Akrobat';
    font-size: 0.9em;
    font-weight: 700;
}

.news-link{
    display: block;
}

#menu-burger{
    display: none;
}

.menu-button::after{
    content: '';
    margin-top: 8px;
    width: 30px;
}

.menu-button{
    margin-top: 12px;
    margin-right: 14px;
    width: 30px;
}

.menu-button::before{
    content: '';
    margin-top: -8px;
    width: 30px;
}

.menu-button-container{
    display: none;
    height: 100%;
    width: 30px;
}

.menu-button,
.menu-button::before,
.menu-button::after{
    display: none;
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background-color: #fff;
    position: absolute;
    right: 0;
}

main{
    position: relative;
    min-height: calc(69vh - 20px);
}

footer{
    margin-top: 60px;

    height: 30px;
    align-items: center;
    padding: 2% 4%;
    background-color: #d0a053;
    display: flex;
    line-height:0%;
}

footer h1{
    font-family: 'Akrobat';
    font-weight: 700;
    color: #ffffff;
    font-size: 18px;
    margin-right: 23%;
    line-height:100%;
}

footer a{
    width: 75px;

}

footer img{
    width:45px;
}

.contact_info{
    position: absolute;
    right: 4%;
}

.contact_info h1{
    font-family: 'Akrobat';
    font-weight: 600;
    color: #ffffff;
    font-size: 13px;
    margin-right: 0 !important;
    line-height: 30%;
}

.contact_info p{
    font-family: 'Akrobat';
    font-weight: 500;
    color: #ffffff;
    font-size: 13px;
    line-height: 5%;
}

@media (max-width: 480px){
    header{
        background-color: #e0a24d;
    }

    header img{
        margin-left: 1.5%;
        margin-bottom: 2%;
        height: 10%;
        max-width: 50%;
    }

    .news-link{
        display: block;
    }
    
    #menu-burger{
        display: none;
        position: absolute;
        right: 0;
    }

    .menu-button{
        margin-top: -9%;
    }

    .menu-button,
    .menu-button::before,
    .menu-button::after{
        display: block;
    }

    #menu-burger ~ nav{
        height: 0;
    }

    #menu-burger:checked ~ nav{
        height: max-content;
    }

    #menu-burger ~ nav a{
        display: none;
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-burger:checked ~ nav a{
        display: block;
        height: 1.5em;
        margin: 7px 20px 0 40px;
        padding: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    nav{
        display: flex;
        flex-direction: column;
        align-items:flex-end;
        position: absolute;
        background-color: #cf923f;
        z-index:10;
        right: 0;
        margin-top: 2%;
    }

    nav .line{
        height: 4px;
        width: 100%;
        background-color: #cd8e3f;
    }

    footer{
        display: flex;

    }

    footer h1{
        font-size: 8px;
        margin-right: 10%;
        max-width: 30%;
    }

    footer a{
        width: 40px;
    }

    footer img{
        width: 20px;
    }



    .contact_info h1{
        font-size: 6px;
        max-width: 50%;
        white-space: nowrap;
    }

    .contact_info p{
        font-size: 6px;
    }
}
