.icon{
    position:absolute;
    left: 0; 
    top: 0; 
    padding: 10px;
}

.icon > img{
    height: 80px;
}

.navbar{
    display: block;
    position: absolute;
    right: 10px;
    top: 25px;
    padding: 10px;
}

.hamburger{
    display:none;
    width: 35px;
}

.bara, .barb, .barc{
    width: 35px;
    height: 5px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
}

.bara.change{
    transform: translate(0,  11px) rotate(45deg);
    color: white;
}

.barb.change{
    opacity: 0;
}

.barc.change{
    transform: translate(0, -11px) rotate(-45deg);
}

a{
    font-family: "madimi one", cursive;
    font-size: 20px;
    padding:5px;
}

.navbar > a{
    text-transform: uppercase;
}

@media  only screen and (max-width: 1000px) {
    .hamburger{
        display:block;
    }
    .navbar{
        display:none;
    }
}