/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #177199;
    color: white;
    padding: 1em 2em;
    text-align: left;
    white-space: nowrap;
}

.logo{
    height:25px;
    float:left;
    margin-right: 8px;
}

header h1 {
    margin: 0;
    text-align:left;
    display: inline-block;
    vertical-align: middle;
}

header h1 span{
    font-size:16px;
}

nav {
    display: inline-block;
    padding: 0px;
    margin-left: 30px;
    vertical-align: middle;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    position: relative;
    margin: 0 1em 0 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: normal;
    font-size:14px;
    white-space: nowrap;
}

nav ul li a svg{
    width:8px;
    margin-left: 4px;
    vertical-align: baseline;
}

nav ul li a:hover {
    text-decoration: underline;
}

nav ul .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: -11px;
    background-color: #177199;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 300px;
    z-index: 1000;
}

nav ul .submenu li {
    margin: 0;
}

nav ul .submenu li a {
    padding: 0.4em 1em;
    display: block;
    color: white;
}

nav ul .submenu li a:hover {
    background-color: #0b6287;
}

nav ul li:hover > .submenu {
    display: block;
}

main {
    text-align: left;
    position: absolute;
    top: 54px;
    left: 0px;
    width: calc(100% - 40px);
    height: calc(100% - 54px);
    padding:0px 20px;
}

.custom-content {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background-color: #fff;
    border-radius: 0px;
    height:100%
}

.custom-content h2 {
    margin-top: 0;
}

.media-content {
    margin-top: 2em;
}

.media-content img,
.media-content video {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em auto;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    margin: 0;
}

.inactive{
    text-decoration:none!important
}

.active{
    margin-right:6px
}

.menuitem{
    padding: 7px 0px
}

.octopus{
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
}

.nav{
    padding:0 1em!important
}

.nav ul{
    margin:0!important
}

.nav nav ul li a{
    font-size:12px;
}

.nav nav ul li a svg{
    width:6px;
}

header{
    position: absolute;
    top: 0px;
    left: 0px;
    min-width: calc(100% - 40px);
    height: 34px;
    z-index: 100;
    padding: 10px 20px;
}

.overflow_scroll{
    overflow:scroll
}

.custom-alert {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 150px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}
.custom-alert-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 8px;
    position: relative;
}
.custom-alert-close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}
.custom-alert-close:hover,
.custom-alert-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.welcome {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #177199;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
h2 a {
    text-decoration: none;
    color: #000;
}
.enter-button {
    height: 50px;
    width: 200px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16pt;
}
