:root {
    --bgMain: #cb5535;
    --bgPrimary: #35abcb;
}

header {
    background-color: var(--bgMain);
    padding: 10px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.menu ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.menu ul li a {
    color: white;
}

footer {
    background-color: #066B86;
    display: flex;
    padding: 10px 50px;
    gap: 100px;
}

.textPrimary {
    color: var(--bgMain);
}

footer ul {
    list-style: none;
}

footer ul li a {
    color: white;
}

.logoBox {
    width: 200px;
}