@charset "utf-8";
/* CSS Document */
/* body { 
            font-family: Decalotype, Avenir, Arial, Helvetica, Verdana, Sans-Serif;
}*/

body, html {
    height: 100vh;
    margin: 0;
    font-family: Decalotype, Avenir, Arial, Helvetica, Verdana, Sans-Serif;
    background-image: url('../images/page_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: bottom;
    background-color: #000;
}
                
                .header {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 1em;
                    background-color: rgba(255, 255, 255, 0.7);
                    margin-bottom: 2em;
                }
                
                .logo {
                    width: 5em;
                    height: auto;
                }
                
                nav ul {
                    list-style-type: none;
                    margin: 0;
                    padding: 0;
                    display: flex;
                    font-size: 1em;
                }
                
                nav ul li {
                    margin-left: 1em;
                    position: relative;
                    list-style: none;
                    float: left;
                    width: 90%;
                }
                
                nav ul li a {
                    color: #fff;
                    padding: 10px 15px;
                    text-decoration: none;
                    justify-content: space-between;
                }
                
                nav ul li a:hover {
                    background: #2b93e3;
                }
                
                nav ul li ul {
                    position: absolute;
                    left: 0;
                    width: 200px;
                    background: #445964;
                    display: none;
                    position: absolute; 
                    z-index: 9999; 
                }
                
                nav ul li:hover > ul {
                    display: block;
                }
                
                nav ul li ul li {
                    position: relative;
                    width: 100%;
                }
                
                nav ul li ul li ul {
                    top: 0;
                    left: 200px;
                    width: 90%;
                }
                
                .content {
                    margin: 3em;
                    align-items: center;
                    justify-content: center;
                    height: 100vh;
                    text-align: justify;
                    padding: 1em;
                }
                
                .content img {
                    width: 100%;
                    height: auto;
                    margin-bottom: 1em;
                }
                
                .content p {
                    margin: 0;
                    font-size: 1.1em;
                    color: #333;
                    background: rgba(255, 255, 255, 0.8);
                    padding: 1em;
                    /*border-radius: 8px;*/
                    width: 80%;
                    max-width: 90%;
                }
                
                .push {
                    height: 125px;
                    width: 100vw;
                }
                
                footer {
                    background-color: rgba(0, 0, 0, 0.9);
                    color: white;
                    padding: 1em;
                    text-align: center;
                    width: 100%;
                    height: 125px;
                    left: 0;
                    bottom: 0;
                }
                
                footer ul {
                    list-style-type: none;
                    padding: 0;
                    display: flex;
                    justify-content: center;
                }
                
                footer ul li {
                    margin: 0 1em;
                }
            
                @media (max-width: 600px) {
                    /*.header {
                    flex-direction: column;
                    }*/
                
                    nav ul {
                        margin-top: 1em;
                    }
                
                    .content p {
                        font-size: 0.9em;
                    }
                    
                    header nav {
                        position: absolute;
                        width: 100%;
                    }
                }
                
                .modal {
                    display: none; /* Hidden by default */
                    z-index: 1;
                    left: 0;
                    top: 0;
                    width: 50%;
                    height: 100%;
                    overflow: auto;
                    background-color: #BE2F26;
                }
                
                .modal-content {
                    background-color: #fefefe;
                    margin: 15% auto;
                    padding: 20px;
                    border: 1px solid #888;
                    width: 80%;
                    max-width: 500px;
                }
                
                .close {
                    color: #aaa;
                    float: right;
                    font-size: 28px;
                    font-weight: bold;
                }
                
                .close:hover,
                .close:focus {
                    color: black;
                    text-decoration: none;
                    cursor: pointer;
                }
                
                button {
                    background-color: #BE2F26;
                    color: white;
                    padding: 14px 20px;
                    margin: 8px 0;
                    border: none;
                    cursor: pointer;
                }
                
                button:hover {
                    opacity: 0.8;
                }
                
                .row {
                    display: flex;
                }
                
                .column {
                    flex: 50%;
                }
                
                div.container {
                    margin: auto;
                    border: 3px solid #000;
                    background: rgba(255, 255, 255, 0.8);
                    padding: 2em;
                    border-radius: 8px;
                    max-width: 100%;
                }
                
                th, td {
                    padding: 10px;
                }

                li a, .dropbtn {
                    display: inline-block;
                    color: white;
                    text-align: center;
                    padding: 14px 16px;
                    text-decoration: none;
                }
                
                li a:hover, .dropdown:hover .dropbtn {
                  background-color: red;
                }
                
                li.dropdown {
                  display: inline-block;
                }

                
