* {
    margin: 0;
}

header {
    width: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
}

#header-nav-links {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: white;
    text-transform: uppercase;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 24px;
}

#header-nav-links a {
    text-decoration: none;
    color: white;
}

#header-nav-links > p {
    padding-left: 5px;
    padding-right: 5px;
}

#header-nav-links > p:hover {

    background-color: red;
}