* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #fafafa;
}

header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 18px;
    flex-direction: column;
    gap: 36px;
}

nav {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

menu {
    width: 184px;
}

.customer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.user {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #E7E8EA;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user img {
    width: 10px;
    height: 10px;
}

.find {
    width: 144px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-block: 8px;
    padding-inline: 16px;
    background-color: #000;
    border-radius: 16px;
}

.find img {
    height: 10px;
    height: 10px;
}

.find p {
    font-size: 10px;
    color: #fafafa;
}

.bar {
    height: 1px;
    width: 90%;
    background-color: #898C94;
}