header {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 25px 0 black;
}
header img {
    height: 80px;
    margin-left: 40px;
}
header li {
    margin: 20px;
}
header li a {
    color: black;
    text-decoration: none;
    padding: 14px 16px;
}
header li a.active{
    color: white;
    background-color: #ff4e4e;
}
header li a:hover:not(.active) {
    background-color: #ddd;
}
header * {
    display: inline;
}
footer {
    background: #e6f2f7;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: center;
}
footer * {
    margin: 20px;
    display: inline;
}
body {
    height: 125vh;
    background-image: url('https://codetheweb.blog/assets/img/posts/style-a-navigation-bar-css/background.jpg');
    background-size: cover;
    font-family: sans-serif;
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 30px;
}
main {
    color: white;
}