* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: "Inter", sans-serif;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-nav {
    background-color: #EACBD3;
    width: 832px;
    height: 50px;
    border-radius: 25px;
    padding: 19px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.header-nav ul {
    display: flex;
    gap: 50px;
    list-style: none;
    padding-inline-start: 0px;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
}


.header-nav ul a {
    text-decoration: none;
    color: black;
    font-weight: 600;
}

.header-controls {
    display: flex;
    gap: 59px;
}