html {
    font-family: sans-serif;
}
body *{
    box-sizing: border-box;
}
.container {
    max-width: 1320px;
    margin: 0 auto;
}
.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 2px solid #5e5e5e;
}
.logo {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background-color: black;
}
.nav {
    flex: 0 0 30%;
}
.nav-list {
    display: flex;
    justify-content: space-between;
}
.list-element {
    list-style: none;
    padding: 0;
    margin: 0;
}
.list-element a {
    color: black;
}
.num {
    font-weight: 600;
    text-decoration: none;
    color: black;
}