.info-bar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 13%;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-bar li {
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Arial Black", Gadget, sans-serif;
    font-size: 18px;
    color: #fff;
    box-sizing: border-box;
    padding: 0 10px;
    padding-top: 35px;
    background-color: #2a2a2a; 
}


.info-bar ul {
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 75%;
    list-style: none;
}

.info-bar a {
    display: block;
    height: 100%;
    text-decoration: none;
    color: #fff;
    text-align: center;
}
.info-bar li:hover {
    transition: 1.5s;
    background-color: #5e5151d2; 
}


