/* GENERAL CONTAINERS */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER */
.site-header {
    background-color: transparent;
    padding: 15px 0;
    text-align: center;
    border-bottom: none;
}

.site-header .logo {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.site-header .main-nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.site-header .main-nav a:hover {
    text-decoration: underline;
}

/* FOOTER */
.site-footer {
    background-color: #f1f1f1;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #ddd;
    font-size: 14px;
}

.site-footer .footer-nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #555;
}

.site-footer .footer-nav a:hover {
    text-decoration: underline;
}

.site-footer a {
    color: #000;        /* make links visible */
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}






