/* Place the navbar at the bottom of the page, and make it stick */
.buchethead {
    overflow: hidden;
    background-position: top;
    background-image: url("stripes_with_logo.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: inherit;
    top: 0;
    width: 100%;
    height: 250px;
}

.navbar {
    overflow: hidden;
    background-position: bottom;
    background-repeat: no-repeat;
    background-image: url("stripes.svg");
    background-size: 100% 100%;
    position: inherit;
    bottom: 0;
    width: 100%;
    height: 90px;
}

/* Style the links inside the navigation bar */
.navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    width: 10%;
    height: 90%;
}

/* Change the color of links on hover */
.navbar a:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
.navbar a.active {
    background-color: #04AA6D;
    color: white;
}
