@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap');

body {
    font-family: Montserrat, sans-serif;
}

header {
    background-color: #f5f5f5;
    padding: 10px 0;
}

.header-content {
    width: 100%;
    margin: 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.logo {
    height: 34px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header-link {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    text-transform: lowercase;
}

.header-link:hover {
    color: #f79b1c;
}

.menu-icon {
    font-size: 2rem;
    color: #333;
    text-decoration: none;
    line-height: 1;
}

.header-content > a:first-child {
    justify-self: start;
}

.header-nav {
    justify-self: center;
}

.menu-icon {
    justify-self: end;
}

@media (max-width: 768px) {
    .header-link {
        font-size: 0.75rem;
    }

    .logo {
        height: 22px;
        display: block;
    }
}
