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

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

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

header {
    grid-area: 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 {
    grid-area: nav;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #ee9900;
    border: 2px solid #004159;
    border-radius: 10px;
}

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 {
    background-color: #0078a5;
    color: white;
}

nav li a, .dropbtn {
    display: inline-block;
    color: #ee9900;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ee9900;
    min-width: 160px;
    z-index: 1;
}

.dropdown-content a {
    color: #004159;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border: 1px solid #004159;
    text-align: center;
}

.dropdown-content a:hover {
    background-color: #fff2e3; 
    color: #004159;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.box {
    background: #fff2e3;
    border: 2px solid #004159;
    border-radius: 10px;
    padding: 0;
    margin-top: 10px;
}
.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;
}

a {
    color: #0078a5;
}

a:hover {
    color: #ee9900;
}

.footer {
    grid-area: 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;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
    margin: 10px 0 0 0;
    max-width: 900px;
    gap: 10px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 33%;

}

.column img {
  margin-top: 10px;
  vertical-align: middle;
  width: 100%;
   
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 700px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 45%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 500px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
    }
}