/* header and navigation styles */

/* primary styling for the navigation */
.primary-header {
    background-color: var(--color-navbar-background);
    width: 100%;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 50px;
    overflow: hidden;
    padding: 30px 10%;
}


/* contact button  */
.nav-button {
    padding: 9px 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.logo {
    height: 30px;
    width: 30px;
    margin-left: 25px;
}

/* responsive size for phones */
@media screen and (max-width: 600px) {
    .primary-header {
        padding: 10px;
    }
}

