html {
    font-family: sans-serif;
}

body * {
    box-sizing: border-box;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.container {
    max-width: 1250px;
    margin: 15px auto;
    padding: 0 15px;
}

.logo {
    width: 50px;
    height: 50px;
    background-color: black;
}

.header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #b8aeae;
    padding-bottom: 15px;
    flex-wrap: wrap;
}

a {
    color: black;
}

.number {
    text-decoration: none;
}