/* Place the navbar at the bottom of the page, and make it stick */
.navbar {
    /*background-color: #333;*/
    overflow: hidden;
    position: fixed;
    bottom: 0;
    width: 20%;
}

/* 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;
    -webkit-animation: pulse 1.5s infinite;
}

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

.pulse:hover {
    -webkit-animation: none;
}

@keyframes pulse {
    0% {transform: scale(0.9);}
    70% {transform: scale(1);}
    100% {transform: scale(0.9);}
}
