* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "SF Pro Text", "Myriad Set Pro", "SF Pro Icons", "Apple Legacy Chevron", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    padding-top: 44px;
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
}


.header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -.01em;
    font-family: SF Pro Text, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.navBar {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    height: 44px;
    align-items: center;
}


.navBar a {
    color: rgba(0,0,0,0.8);
    text-decoration: none;
}


.brand img {
    height: 40px;
}

.right-icons img {
    height: 20px;
}




.right-icons{
    display: flex;
    gap: 20px;
}














.bottom {
    background-color: #f5f5f7;
}