
html,body{
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    /*background-color: #e9ebe7;*/
    font-family: Arial, Geneva, Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    font-weight: normal;
}

a{
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}

header {
    width: 100%;
    background-color: #343434;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 75%;
    margin: auto;
}
main section {
    padding: 1px 12px 12px 12px;
}

footer em {
    color: #ff0000;
}
footer {
    background-color: #343434;
    color: #fff;
    padding: 12px;
    text-align: right;
}

@media screen and (min-width: 922px){
	main {
		flex-direction: row;
	}
}

em {
    color: #cc0000;
    font-weight: bold;
    font-style: normal;
}

.overlay{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    position: absolute;
    background-color: rgba(0,0,0,.75);
}

.vh-100 {
    height: 100vh!important;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

