body {
    font-family: "Roboto Flex", sans-serif;
    font-size: 1em;
    color: whitesmoke;
    background-color: black;
    margin: 0 0;
}

ul {
    list-style-type: none;
    padding: 0 0;
    margin: 10px 0 10px 0;
}

header {
    display: flex;
    justify-content:space-between;
    background-color:rgb(2, 2, 100);
    width: 100%;
    height: 45px;
    padding-top: 5px;
    margin-top: 0;
}

header h1 {
    margin-top: 0;
    padding-top: 0;
    color: whitesmoke;
    text-shadow: -3px 0 black, 0 3px black, 3px 0 black, 0 -3px black;    
}

header a img {
    width: 35px;
    margin-left: 10px;
    margin-bottom: 5px;
    margin-top: 0;
    border: 2px solid silver;
    border-radius: 5px;
}

header a img:active {
    border: 2px solid whitesmoke;
}

header ul li {
    display: inline;
    color: whitesmoke;
    background-color: black;
    border: 2px solid silver;
    margin: 0 10px 0 0;
    padding: 5px 10px;
    border-radius: 15px;
}

header ul li:hover {
    background-color: gray;
}

header ul li:active {
    border: 2px solid whitesmoke;
}

header a {
    text-decoration: none;
    font-weight: bold;
}

main {
    display: flex;
    gap: 10px;
}

#left-nav {
    display: hidden;
}

#left-nav ul li {
    width: 200px;
    display: block;
    color: whitesmoke;
    background-color:rgb(2, 2, 100);
    padding: 5px 10px;
    margin-bottom: 5px;
    border-radius: 0 5px 5px 0;
}

#left-nav a {
    color: whitesmoke;
}

#main-panel {
    background-color:rgb(10, 4, 61);
    width: 100%;
    height: 100%;
    padding: 50px 50px 0px 50px;
    margin-top: 10px;
    border-radius: 5px;
    min-height: 90vh;
}

#main-panel p {
    font-size: 1.25em;
    line-height: 150%;
}

#main-panel a {
    color: whitesmoke;
}

#right-panel ul li {
    width: 200px;
    display: block;
    color: whitesmoke;
    background-color: rgb(2, 2, 100);
    padding: 5px 10px;
    margin-bottom: 5px;
    border-radius: 5px 0 0 5px;
}

#main-img {
    width: 250px;
    float: right;
    margin: 30px;    
    border-radius: 25px;
}

#main-img2 {
    width: 250px;
    float: left;
    margin: 0px 30px 0px 0px;    
    border-radius: 25px;
}

/* For the Contact Us form */
#div_id_name label, #div_id_email label, #div_id_message label, #div_id_captcha label {
    font-weight: bold;
    font-size: 1em;
}

#id_name, #id_email, #id_message, #id_captcha_1, #div_id_captcha img {
    border: 5px solid silver;
    border-radius: 5px;
}

pre {
    padding: 5px;
    background-color: black;
}

.pagination {
    margin-top: 20px;
    text-align: center;
}

.step-links a {
    padding: 5px 10px;
    border: 2px solid silver;
    background-color: black;
    border-radius: 15px;
    margin: 0 5px;
    text-decoration: none;
    font-weight: bold;
}

.step-links a:hover {
    background-color: gray;
}

.step-links a:active {
    border: 2px solid whitesmoke;
}

.current {
    font-weight: bold;
}