header {
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 10;
}

.navbar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    gap: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

header .logo {
    cursor: pointer;
    height: 100px;
}

nav {
    height: 40px;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 35px;
}

nav li {
    list-style: none;
}

nav li:hover {
    cursor: pointer;
}

nav a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.2s;
}

nav a:hover {
    color: #3083aa;
}

.instagram {
    cursor: pointer;
    width: 32px;
    height: 32px;
    color: #333;
    transition: color 0.2s;
}

.instagram:hover {
    color: #3083aa;
}