*{
    box-sizing: border-box;
    font-family: 'Chakra Petch', sans-serif;
}
html, body{
    margin: 0;
    height: 100%;
    width: 100%;
    font-family: 'Chakra Petch', sans-serif;
    background: url(imgs/backgrounds/own/ownbg2.jpg);
    background-size: 100%;
}
#main{
    width: 100%;
    height: 100%;
    position: relative;
}
#header{
    height: 85px;
	width: 100%;
    background-image: url("imgs/bg_header_left.gif");
    position: fixed;
    top: 0;
}
#logo_header{
    float: left;
}
.zakladka{
	float: left;
	border: 2px solid #666666;
	border-radius: 10px;
	background-color: rgb(52, 174, 245);
	margin: 15px;
	height: 50px;
	width: 10%;

	display: flex;
    align-items: center;
	justify-content: center;

	font-size: 1.5vw;
	color: black;

	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;

}
.zakladka:link, .zakladka:visited, .zakladka:active{
	color: black;
}
.zakladka:hover{
	cursor: pointer;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	opacity: 0.7;
}
#flagi{
	float: right;
	margin: 10px;
}
.flaga{
    max-width: 5vw;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.flaga:hover{
	cursor: pointer;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
#container{
    width: 100%;
    position: fixed;
    top: 85px;
    bottom: 20px;
}
#footer{
    height: 20px;
    width: 100%;
    background: url("imgs/bg_footer.gif");
	font-size: 12px;
	text-align: center;
	padding-top: 5px;
    position: fixed;
    bottom: 0;
}
#content{
    width: 75vw;
    height: 68vh;
    background: dodgerblue;
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}