body{
    font-family: 'Baloo Tammudu', cursive;
    min-height: 100vh;
}
header{
    width: 100%;
    margin: 0 auto;
    height: 20%;
    background-image:linear-gradient(160deg,#70798c,#758c81,#789f76,#79b268,#79b268,#789f76,#758c81,#70798c);    
}
.header-box{
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.logo{
    max-width:400px;
    margin-top: 30px;
    box-sizing: border-box;
    display: flex;
}
.menu{
    box-sizing: border-box;
    margin-top:110px;
}
.menu > ul{
    list-style: none;
    display: flex;
}
.navbar-link{
    color:#252323;
    text-decoration: none;
    padding: 15px;
    font-size: 1.5em;
}
.navbar-link:hover{
    text-decoration: underline;
}

@media(max-width:800px){
    .header-box{
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
      .logo{
        width: 100%;
        min-width: 300px;
    }
    .menu{
        margin-top: 2em;
    }
    .menu > ul{
        list-style: none;
        display: flex;
        flex-direction: column;
        padding: 0.5em;
        align-items: center;
    }
    .menu > ul > li{
        padding: 0.5em;
        display: block;
    }
}