.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    align-items: center;
    background-color: black;
    padding: 5px 20px;
    z-index: 1000;
}

body {
    margin-top: 50px;
    }

.logo {
    height: 60px;
}
.navbar-right a {
    color: white;
    text-decoration: none;
    padding: 0px 20px;
    font-family: Arial, sans-serif;
}

.cart-link {
    display: inline-block;
    padding: 5px;
}
.cart-link p {
    height: 5px;
    width: 50px;
    vertical-align: middle;
    transition: transform 0.5s ease-in-out;
}

.cart-link:hover .cart-icon {
    transform: scale(1.5);
    filter:drop-shadow(0 0 5px white);
}


.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: black;
    color: white;
    text-align: center;
    padding: 3px;
    font-family: Arial, sans-serif;
    z-index: 1000;
}
.footer a {
    color: white;
    text-decoration: none;
    padding: 0 10px;
}
.footer a:hover {
    text-decoration: underline;
}
