*{
    margin: 0;
    padding: 0;
}

header{
    width: 100%;
    height: 80px;
    padding: 0 5%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav{
    width: 50%;
}

nav ul{
    display: flex;
    list-style-type: none;
    justify-content: space-around;
}

nav ul li a{
    text-decoration: none;
    color: #000000;
}