.navbar {
    background-color: #7986cb;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    padding-left: 20px;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 0;
}

.navbar a {
    color: #f2f2f2;
    text-align: center;
    padding: 15px 0;
    text-decoration: none;
    font-size: 17px;
    vertical-align: center;
    width: 70px;
}

.navbar a:hover {
    background: white;
    color: black;
}

img.cart {
    position: fixed;
    width: 6%;
    right: 0%;
    top: 0%;
    z-index: 1000;
    transition: 0.30s;
    -webkit-transition: 0.30s;
    -moz-transition: 0.30s;
    -ms-transition: 0.30s;
}

.cart img:hover {
    transition: 0.35s;
    -webkit-transition: 0.35s;
    -moz-transition: 0.35s;
    -ms-transition: 0.35s;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

@media only screen and (max-width: 1000px) {
    img.cart {
        width: 17%;
    }
}