@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&family=Kumar+One&family=Outfit:wght@100..900&display=swap');
:root {
    --kolor1: #131200;
    --kolor2: #EEF5DB;
    --kolor3: #F39B6D;
    --kolor4: #7F7B82;
    --kolor5: #0EAD69;
}
body{
    font-family: "Heebo", serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #EEF5DB;
}
.header{
    background-color: #0EAD69;
    display: flex;
}
.main{
    background-color: #EEF5DB;
    flex-grow: 1;
}
.footer{
    background-color: #F39B6D;
}
.icon img{
    width: 25px;
}
.logo>img{
    width: 100px;
}
.logo{
    background-color: aqua;
}
.menu{
    width: 100%;
    z-index:5;
}
.menu>ul{
    display: flex;
    list-style: none;
    /* gap: 20px; */
    align-items: center;
    height: 100%;
    justify-content: right;
    margin: 0;
}
.menu>ul a{
    text-decoration: none;
    color:#131200;
    padding: 0 20px;
    height: 100%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: 0.5s;
}
.menu a:hover {
    background-color: #5be4a9;
}
.footer{
    display: flex;
    flex-wrap: wrap;
}
.footer>div {
    flex-grow: 1;
}
.copyright{
    width: 100%;
    text-align: center;
}
.social{
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 10px;
    padding-right: 20px;
}
.address{
    display: grid;
    place-items: center;
    text-align: center;
}
.menu-footer{
    order: -1;
}
.menu-footer>ul{
    list-style: none;
}
.menu-footer a{
    color:#131200;
    text-decoration: none;
}
.menu-footer a:hover{
    text-decoration: underline;
}
.hamburger img{
    cursor: pointer;
    width: 65px;
}
.hamburger{
    display: none;
}
@media screen and (max-width:600px) {
    .menu ul{
        display: none;
        position: absolute;
        left: 0;
        padding: 0;;
        top: 62px;
        height: 30px;
        background-color: #0EAD69;
    }
    .menu a {
        padding: 10px 0 !important;
        height: 10px;
        background-color: #0EAD69;
        width: 100vw;
        border-top: 3px solid #EEF5DB;
    }
    .hamburger{
        display: flex;
        justify-content: flex-end;
        padding-right: 10px;
        background-color: aqua;
    }
    .show {
        display: block !important;
    }
    
}