body {
	padding: 0;
	margin: 0;
	font-family: Arial;
	color: #242424;
}
#menu {
	background: white;
	height: 100px;
	padding: 20px 40px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	position: fixed;
    width: 100%;
	top: 0;
	box-shadow: 0px 0px 30px 0px #07265f1a;
}
#menu #menu_logo {
	height: 100%;
}
#menu #menu_buttons {
	display: flex;
	align-items: center;
}
#menu #menu_buttons .menu_button {
    padding: 10px;
    border-radius: 10px;
	color: #242424;
    text-decoration: none;
	border: 1px solid #242424;
	margin-left: 20px;
}
#menu #menu_buttons .menu_button:hover {
    background-color: #f7931e;
	border-color: #f7931e;
    color: white;
}
#content {
	margin-top: 100px;
}
#content #home {
	background-image: url(/images/background.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	height: calc( 100vh - 100px );
	padding: 100px 20px;
	box-sizing: border-box;
}
#content #home #content_logo {
	background-image: url(/images/logo_big.svg);
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
#content .content_block {
	min-height: 100vh;
	box-sizing: border-box;
    padding: 160px 60px 60px 60px;
}
#content .content_block .content_block_header {
	font-size: 24px;
    margin-bottom: 40px;
	text-align: center;
}
#content .content_block .content_block_body {
    font-size: 16px;
    line-height: 24px;	
	text-align: justify;
}
#content .content_block#contact {
	text-align: center;
	height: auto;
    padding-bottom: 160px;
}
#content .content_block#contact .content_block_body {
	text-align: center;
	height: auto;
}
#footer {
	height: 60px;
	padding: 20px;
	box-sizing: border-box;
	text-align: center;
}
#footer a {
	font-size: 16px;
	line-height: 20px;
	color: #845dce;			
}

@media only screen and (max-width: 500px) {
	
	#content {
		margin-top: 80px;		
	}
	#content #home #content_logo {
		height: 60%;
		margin: 20% 0;
	}
	#menu {
		padding: 20px;
		height: 80px;
		box-shadow: 0px 0px 30px 0px #07265f38;
	}
	#menu #menu_buttons {
		position: fixed;
        bottom: 0;
        background: white;
        width: 100%;
        left: 0;
        padding: 20px;
        justify-content: space-between;
        box-sizing: border-box;
		box-shadow: 0px 0px 30px 0px #07265f38;
	}
	#menu #menu_buttons .menu_button {
		padding: 6px 10px;
        margin-left: 0;
        font-size: 14px;
	}
	#menu #menu_buttons .menu_button:hover {
		background-color: #f7931e;	
		color: white;
		
		border-color: #f7931e;
	}
	#content .content_block {
		padding: 120px 20px 20px 20px;
	}
	#content .content_block#contact {
		height: auto;
		padding-bottom: 120px;
	}
	#content .content_block .content_block_header {
		margin-bottom: 20px;
	}
}