html {
    line-height: 1.5;
    font-family: "Open Sans", sans-serif;
}

body {
    background-color: #88D498;
    color: #114B5F;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}


/*Header CSS*/

header {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    background-color: #114B5F;
    padding: .5rem;
    border-radius: 5px 5px 0 0;
    text-align: center;
}

header img {
    width: 100px;
    max-height: 100px;
    border: 5px solid #88D498;
    border-radius: 5px;
    margin: 1.5rem 0;
}

#headerDiv {
    display: flex;
    flex-direction: column;
    justify-content: center
}

header h1, h3 {
    margin: 0;
    padding: .5rem;
    color: #F3E9D2;
    font-family: "Trirong", cursive;
}
header h1 {
    font-size: 18pt;
}

header h3 {
    font-size: 11pt;
    margin-top: -10px;
}


/*Navigation CSS*/

nav {
    background-color: #1A9364;
    margin: 0;
    border-radius: 0 0 5px 5px;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
}

nav button {
    margin: .2rem 2%;
    padding: .8rem 2%;
    background-color: transparent;
    border: none;
    color: #F3E9D2;
}

#navigation {
    list-style: none;
    padding: 0;
    margin: 0;
  
}
 nav ul.response {
    display: none;
}

nav li {
    display: block;
    padding: .8rem 2%;
    margin-left: 2%;
    text-align: left;
    text-decoration: none;
    color: #F3E9D2;
    border-top: 1px solid rgba(17, 75, 95, 0.5 )
}

nav ul li a {
    color: #F3E9D2;
    text-decoration: none;
}

nav ul li.active {
    background-color: rgba(17, 75, 95, 0.7);
    color: #114B5F;
}

li:hover {
    background-color: #114B5F;
}

/* Main CSS */

h2 {
    text-align: center;
}
.contentbox {
    display: block;
    background-color: #1A9364;
    margin: 2rem;
    padding: 1rem;
    color: #F3E9D2;
    border-radius: 5px;
}


/* Footer CSS */
body {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #114B5F;
    color: #F3E9D2;
    font-size: 16px;
    padding: 1.5rem;
    border-radius: 0 0 5px 5px;
}

footer p {
    margin: 0;
}