/* Page body styles */
body {
    margin:0; /* Remove the default page margin */
}

/* General styles that apply to everything */
* {
    font-family:-apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, Helvetica, Arial, sans-serif;
    line-height:1.5em;
}
a {
    color:#004e9d; /* Link color */
}
a:hover {
    color:#000; /* Hovered link color */
}

/* Responsive images */
figure {
    text-align:center;
    margin:.5rem 0;
    padding:0;
}
figure svg,
figure img {
    max-width:100%;
    height:auto;
}

/* Header */
.header {
    background:rgb(75, 75, 76);
    padding:1rem;
    text-align:center;
}
.header figure {
    margin:0;
    padding:0;
}
.header figure img,
.header figure svg {
    display:inline-block;
}

/* Horizontal menu links used in the header and footer */
.menu-links {
    list-style:none;
    margin:.5em 0;
    padding:0;
}
.menu-links li {
    display:inline-block;
}
.menu-links a {
    display:block;
    padding:.5em;
    white-space:nowrap;
}

/* Main Content Column */
.main-content {
    background:rgb(247, 235, 232);
    
}

/* Left Sidebar Column */
.left-sidebar {
    background:rgb(247, 235, 232);
}

/* Right Sidebar Column */
.right-sidebar {
    background:rgb(208, 206, 206);
}
/* Footer */
.footer {
    text-align:center;
    background:rgb(75, 75, 76);
}

.footer p{
    color: #fff;
}

.footer a{
    text-decoration: none;
    color: rgb(252, 184, 59);
}