* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'courier new' ;
    background-color: #ffce97;
    color: #222222;
}

.container {
    display: grid;
    grid-template-areas: 
        'header'
        'nav'
        'main'
        'footer';
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

header {
    background-color: #004159;
    border: 2px solid #ee9900;
    border-radius: 10px;
    height: auto;
    text-align: center;
    padding: 20px 20px 20px 20px;
    margin: 20px 0 20px 0;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    background-color: #ee9900;
    border: 2px solid #004159
}

nav ul li {
    float: left;
    border-right: 2px solid #004159;
}

nav ul li:last-child {
    border-right: 2px solid #004159;
}

nav ul li a {
    display: block;
    color: #004159;
    text-align: center;
    font-weight: bold;
    padding: 14px 16px;
    text-decoration: none;
}

nav ul li a:hover:not(.active) {
    background-color: #0078a5;
    color: white;
}
   

main {
    padding: 0;
}

.content-grid {
    display: grid;
    column-count: 2;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.box {
    background: #fff2e3;
    border: 2px solid #004159;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 20px;
}
.box-header {
    background-color: #0078a5;
    color: #fff2e3;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 6px;
    border-bottom: 2px solid #004159;
}

.box-content {
    padding: 15px;
}

.box-content p{
    font-size: 14px;
    padding-top: 5px;
    margin-bottom: 5px;
}

.box-list1 li {
    list-style: "⛧ " inside;
    font-size: 14px;
    border-bottom: 1px dashed #ee9900;
    padding: 5px 0 5px 0;
}

.box-list2 li {
    list-style: "☽ " inside;
    font-size: 14px;
    border-bottom: 1px dashed #ee9900;
    padding: 5px 0 5px 0;
}

.box-list3 li {
    list-style: "☾ " inside;
    font-size: 14px;
    border-bottom: 1px dashed #ee9900;
    padding: 5px 0 5px 0;
}

.box-scroll {
    max-height: 150px;
    overflow-y:auto;
    overflow-x:hidden;
}
a {
    color: #0078a5;
}

a:hover {
    color: #ee9900;
}

.footer {
    display: block;
    line-height: 10px;
    border-top: 2px solid #ee9900;
    color: #004159;
    width: 100%;
    height: 40px;
    margin: 10px 0 0 0;
    padding: 10px;
    text-align: right;
}
h1, h2, h3, h5, h4 {color: #ee9900}

h1 {font-size: 25px;}

strong {
    color: #061343;
}

hr {
    display: block;
    width: 100%;
    line-height: 0;
    margin-bottom: 5px;
    border-top: 1px dashed #ee9900;
    border-bottom: 1px dashed #ee9900;
}

@media (max-width: 700px) {
    .content-grid {
        column-count: 1;
    }
}
