html,
body {
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #1A1919;
}

body {
	display: flex;
	flex-direction: column;
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background-color: transparent;
}

::-webkit-scrollbar-thumb {
	background-color: #BD6720;
	/*border-radius: 20px;*/
}

.header {
	display: flex;
	width: 100%;
	background-color: #BD6720;
	height: 3em;
}

.header .name {
	flex-grow: 1;
	padding: 0.875em;
	font-weight: 800;
}

.menu {
	display: flex;
	flex: 1;
}

.menubutton,
.menubutton a {
	border-right: 0 solid black;
	letter-spacing: 3px;
	cursor: pointer;
	background-color: transparent;
	border: 0;
	margin: 0.875em;
	padding: 0em;
	color: #470E25;
	min-width: 115px;
}

.menubutton:hover,
.menubutton a:hover,
.menubutton.active:hover a {
	color: #C7C18F;
}

.menubutton.active {
	font-weight: 700;
	border-bottom: 1px solid;
}

.langbutton {
	border-right: 0 solid black;
	letter-spacing: 3px;
	cursor: pointer;
	background-color: transparent;
	border: 0;
	margin: 0.875em;
	padding: 0em;
	color: #470E25;
	margin: 0em;
	margin-right: 0.875em;
}

.main-footer{
	display: flex;
    flex-direction: column;
    overflow-y: auto;
	height: 100%;
}

.main {
	flex: auto;
}

.footer {
	display: flex;
	width: 100%;
	background-color: #C7C18F;
	color: #470E25;
    flex-wrap: wrap;
    justify-content: space-between;
}


.footerbutton,
.footerbutton a {
	cursor: pointer;
	background-color: transparent;
	border: 0;
	margin: 0.875em;
	padding: 0em;
    display: flex;
    flex-wrap: wrap;
}

.footerbutton:hover,
.footerbutton a:hover {
	color: #470E25;
	font-style: italic;
}


a {
	color: #1A1919;
	text-decoration: none;
}

.menu-phone{
    display: none;
}


@media (max-width:750px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */ 
    .menu-phone{
        display: inline;
    }

    .menu{
        display: none
    }

    #bar{
        height: 2em;
        margin: 0em;
        margin-top: 0.5em;
        margin-right: 0.875em;
    }
}

#overlay {
    position: fixed;
    /* Sit on top of the page content */
    width: 50%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #BD6720;
    /* Black background with opacity */
    z-index: 2;
    /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer;
    /* Add a pointer on hover */
	
	border: #1A1919 solid 10px ;
    padding: 1rem;
    flex-shrink: 0;
    flex-direction: column;
    display: flex;
}

#full-overlay {
    position: fixed;
    /* Sit on top of the page content */
    display: none;
    /* Hidden by default */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    /* Black background with opacity */
    z-index: 2;
    /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer;
    /* Add a pointer on hover */
}


#overlay ul {
    margin-bottom: auto;
    flex-direction: column;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    list-style: none;
}

#overlay li {
    list-style: none;
    color: #C7C18F;
    font-size: 16px;

	padding: 1rem;
    margin-bottom: 0.25rem;
    margin-top: 0.25rem;
    border-radius: 0.25rem;
    
    color: #470E25
}

#overlay li.active {
	background-color: #C7C18F;
}

#overlay li:hover {
	background-color: #C7C18F;
}