

font-family: 'Oxygen Mono', monospace;

/* https://www.w3schools.com/howto/howto_js_responsive_navbar_dropdown.asp
https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_dropdown_navbar_click
are the two links I used for the navigation bar. However it took many hours in tiral and error to get this right as the code is a combination of the two that needed adlibbing to make it work*/


.flip {
    height: 100%;
    width: inherit;
    margin: 0 auto;
}

.flip img {
    width: inherit;
    height: auto;
}
.flip .back {
    height: auto;
    color: #fff;
    text-align: center;
}
div{
    
}


.row {
    margin: 0;
    border: none;
    
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

.topnav {
    background-color: #333;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    
}

.active {
    background-color: #4CAF50;
    color:white;
}

.topnav .icon{
    display: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    cursor: pointer;
    font-size: 17px;    
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

topnav, a:hover, .dropdown:hover .dropbtn {
    background-color: #555;
    color: white;
}

.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

.show {
    display: block;
}


.container {
    max-width: 100%;
    margin: 10px auto;
    border-radius: 10px;
}
body {
     background: #2184cd;
}
    
article {
    font-family: 'Exo 2', sans-serif;
    font-size: 20px;
    color: #fff;
    border: 3px solid #FFA000;
    border-radius: 20px;
    
}
p {
    margin: 10px;
}
header {
    
}
footer {
    
}
h1 {
    color:#fff;
    font-family: 'Cinzel Decorative', cursive;
    text-shadow: 4px 4px 4px #aaa;
    text-align: center;
    font-size: 3em;
    margin: 15px 10%;
    border: 4px solid #FFA000;
    border-radius: 20px
    
    
}
img {
    display: block;
    margin: 10px auto;
    
}
[class*="col-"] {
            float: left;
    width: 100%;
}
@media screen and (max-width: 600px){
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon{
        float: right;
        display: block;
    }
}
@media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }

 .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
 }
 .topnav.responsive .dropdown {float: none;}
 .topnav.responsive .dropdown-content {position:relative;}
 .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
 }
}

 @media only screen and (min-width: 900px) {
            /* For desktop: */
          
            .col-1 {
                width: 8.33%;
            }
            .col-2 {
                width: 16.66%;
            }
            .col-3 {
                width: 25%;
            }
            .col-4 {
                width: 33.33%;
            }
            .col-5 {
                width: 41.66%;
            }
            .col-6 {
                width: 50%;
            }
            .col-7 {
                width: 58.33%;
            }
            .col-8 {
                width: 66.66%;
            }
            .col-9 {
                width: 75%;
            }
            .col-10 {
                width: 83.33%;
            }
            .col-11 {
                width: 91.66%;
            }
            .col-12 {
                width: 100%;
            }
}