:root {
  --BACKGROUND_BLUE: #0b1821;
  --BASE_TEXT: #ffffda;
  --LINK_TEXT: #01793a;
}

* {
  margin: 0;
  padding: 0;
}

body {
    /*font-family: et-book, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;*/

    font-size: 15px;
    line-height: 1.5;
    color: var(--BASE_TEXT);
    background-color: #000000;/*var(--BACKGROUND_BLUE);*/
    margin: 0 auto 40px auto;
    padding: 0;

    width:        95%;/*87.5%;*/
    /* padding-left: 5.0%; */
    max-width:    1600px;
    min-height: 100vh;

    position: relative;
}

main {
    width:        92.5%;/*87.5%;*/
    /*padding-left: 20%;*/
    /*margin-left: 20%;*/
    margin: 0 auto;
    max-width:    1000px;
}

section {
    margin-top: 40px;

    background-color: var(--BACKGROUND_BLUE);
    border-color: #01793a;
    border-width: 2px;
    border-style: solid;

    padding-left: 10px;
    padding-bottom: 10px;
}

a {
    color: var(--LINK_TEXT);
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

h1 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
}

h1 a {
    color: var(--BASE_TEXT);
}

#logo-div {
    display: grid;
}

#logo {
   justify-self: center;
}

.fadeout-line {
    background-image: linear-gradient(to right , transparent,#01793a,#01793a, #01793a,#01793a,#01793a, transparent);

    border: 0;
    height: 4px;
}

/* menu style */
.menu-div {
    background-image: linear-gradient(to right , transparent,#0b1821, #0b1821, #0b1821, #0b1821, #0b1821, transparent);
}
.menu {
    margin: 8px 0 8px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    font-size: 26px;
}
.menu li {
    list-style-type: none;
    display: inline;
    color: #ccc;
}
.menu li:not(:first-child):before {
    padding: 0.5em;
    content: " | ";
    color: #ccc;
}

.menu, footer {
    text-align: left;
}

.menu a {
    padding: 10px;
}

.menu li a:hover {
    background-color: var(--LINK_TEXT);
    color: var(--BASE_TEXT);
    text-decoration: none;
}

/* article list styles */

.article-list {
    list-style-type: none;
    font-size: 1.1rem;
    line-height: 1.5rem;
}

.article-list p {
    color: hsl(60, 1%, 53%);
}

/* footer style */

footer {
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 1600px;
}