body {
    background-color: black;
    color: rgb(162, 159, 159);
}

a {
    color: rgb(115, 118, 117);
    text-decoration: none;
}

h2 {
    background-color: rgb(53, 53, 53);
}

div {
    /* background-color: rgb(39, 38, 38) */
}

.container {
    display: flex
}

.main {
    width: 75%
}

.aside {
    width: 25%
}

.header-default {
    background-color: var(--header-background-color);/* rgb(92, 47, 47);*//* <?php echo $header_background_color; ?>; */
    padding-top: 30px;
    padding-bottom: 5px;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    /* <?php if ($background_img == 1) { ?>
    background-image: url("hp/img/bg.jpg");
    background-repeat: repeat;
    background-position: 50% 50%;
    <?php } ?> */
}

.header-default div {
    max-width: 800px;

    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;

    padding-top: 5px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
}

.nav-default ul {
    max-width: 800px;

    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;

    padding-top: 5px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;

    list-style-type: none;
    display: flex;
    justify-content: flex-end;
}

.nav-default ul li {
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
    margin: 0px;
}

.nav-default ul li a {
    display: block;
    text-decoration: none;
    font-weight: bold;
    
    color:beige;/* <?php echo $nav_color; ?>; */
}

.nav-default ul li a:hover {
    opacity: 0.7;
}

.footer-default {
    background-color:cadetblue; /*<?php echo $footer_background_color; ?>;*/
    text-align: center;
    padding-top: 20px;
    padding-bottom: 40px;
    font-size: 0.875rem;
    margin-top: auto;

    /* <?php if ($background_img == 1) { ?>
    background-image: url("hp/img/bg.jpg");
    background-repeat: repeat;
    background-position: 50% 50%;
    <?php } ?> */
}

.footer-default a {
    color: #24292e;
    text-decoration: none;
}