﻿body {
    margin: 0px;
    color: dimgrey;
}

h2 {
margin: 10px;
font-family:Arial, Helvetica, sans-serif;
text-decoration:underline;
text-align:center;

}
#menu_icon {
    display:none;
    height: 25px;
    background-color: dimgrey;
    border: 1px solid dimgrey;
    position: absolute;
    right: 15px;
    top: 12px;
    border-radius: 4px;
    cursor: pointer;
}
nav {
    
}

    nav.large_menu a, nav.large_menu a:visited, nav.large_menu a:hover, nav.large_menu a:active {
        font-family: Arial;
        color: initial;
    }

    nav.large_menu ul {
        list-style-type: none; /* Ensure there is no styling */
    }

    nav.large_menu > ul {
        float: right;
        margin-bottom: 0px;
        margin-top: 25px;
    }

    nav.large_menu li {
        width: 120px; /* Width of heading */
        position: relative; /*ensures that cells are positioned relative to each other */
        float: left; /*Ensures heading list is horizontal*/
    }

    nav.large_menu li a {
        display: block; /* fills the entire element with the anchor tag*/
        font-size: 14px;
        text-align: center;
        text-decoration: none; /* Ensure anchor is not underlined*/
    }

    nav.overlay_menu {
        position: fixed;
        z-index: 10;
        width: 100%;
        height: 100%;
        background-color: black;
    }

        nav.overlay_menu ul {
            list-style-type: none; /* Ensure there is no styling */
            margin:50px auto;
            width:100px;
        }

        nav.overlay_menu ul li {
            height: 30px;
            text-align:center;
        }
        nav.overlay_menu li a {
            text-decoration: none; /* Ensure anchor is not underlined*/
            color: darkslategrey;
        }
header {
    position: fixed;
    top: 0px;
    height: 60px;
    width: 100%;
    z-index: 1;
    display: flex; 
    align-content:center; 
    justify-content:space-between;
    background-color: white;
}

main {
    margin-top:60px;
    min-height:500px;
}

main > p {
    padding: 0px 10px;
}
footer {
    background-color:dimgrey;
    color:white;
    padding: 20px 0px 8px 0px;
}

.top_title {
    margin-top:5px;
    text-align:center;
}

footer > div {
    text-align: center
}

footer > div > a {
    text-decoration: none;
    cursor: pointer;
    color: white;
}

footer > div > p {
    margin-top:0;
}

footer > a, footer > a:visited, footer > a:hover, footer > a:active {
    color: initial;       
}

.icon_social {
    margin: 0px 2px;
    font-size: x-large;
    color: white;
}

.flag_div {
    padding:11px;
}

.flag_icon {
    font-size: x-large;
}

.header_sides {
    width:120px;
}

.cols {
    display: flex;
    align-content: center;
    justify-content: space-around;
}

.cols {
    margin:10px;
}

.cols div {
    flex-basis: 0;
    flex-grow:1;
}

.cols div p {
    margin: 10px;
    text-align: justify;
    text-justify: inter-word;
}

@media (max-width:600px) {
    .cols {
        display: block;
    }
        #menu_icon {
        display: initial;
        transition-timing-function: ease-out;
    }

    nav {
        display:none;
    }
}