* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
	letter-spacing: 0.7px;
	font-size: 20px;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 35px;
    background: #5A6988;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
	font-size: 24px;
}
.header_grup{
	display: flex;
} 
.header_grup div{
	width:50px;
}
/* ===== GRID LAYOUT ===== */
.wrapper {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    margin-top: 35px;
    height: calc(100vh - 70px);
}

nav, main, aside {
    padding: 0px 10px;
    overflow-y: auto;
}

nav {
    background: #C8BFBF;
}

main {
    background: white;
}

aside {
    background: #C8BFBF;
}

/* ===== FOOTER ===== */
footer {
	position:fixed;
	top: auto;
    width: 100%;
    background: #5A6988;
    color: white;
    text-align: center;
    padding: 5px;
	height: 35px;
	
}

/* ===== HAMBURGER ===== */
.hamburger {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    display: none;
}

.hamburger span {
   /* position: absolute;
    width: 100%;
    height: 3px;
    background: white;
    left: 0;
    transition: 0.3s;*/
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* ===== OVERLAY ===== */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 900;
}

.overlay.active {
    display: block;
}
#datum, #vreme{
	position: fixed;
	top: 35;
	background: #864143;
	color: #fff;
	width:250px;
	margin-left: -10px;
	text-align: center;
	height: 35px;padding: 5px;
}
#imena{
	position: fixed;
	top: 35;
	background: #864143;
	color: #fff;
	width:Calc(100% - 500px);
	margin-left: -10px;
	text-align: center;
	height: 35px;	padding: 5px;
	display: flex;
}
.h3{
	margin-top: 35px;
}
.h1{
	margin-top: 65px;
}
.jezik{
	position: fixed;
	top: 70px;
	width: 100%;
	margin-left: -10px;
}
.google form input[type='text']{
	border: solid 1px;
	border-radius: 5px;
	height: 35px;
	width: 300px;
	background: #29405F;
	color: #fff;
	font-size: 20px;
	margin-top: -5px;
}
.google form input[type='submit']{
	border: solid 1px;
	border-radius: 5px;
	height: 35px;
	background: #29405F;
	color: #fff;
	font-size: 20px;	margin-top: -5px;	
}
	.gugl{
		width: 60%;
		text-align: right;
	}
	.nas{
		width: 40%;
		text-align: left;
		padding-left: 5px;
	}
.header_grup a{
	color: #fff;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {

    .wrapper {
        grid-template-columns: 1fr;
    }

    .hamburger {
        display: block;
    }

    nav, aside {
        position: fixed;
        top: 35px;
        height: calc(100vh - 70px);
        width: 250px;
        transition: 0.3s;
        z-index: 950;
    }

    nav {
        left: -250px;
    }

    aside {
        right: -250px;
    }

    nav.active {
        left: 0;
    }

    aside.active {
        right: 0;
    }
	#imena{
		width: 100%;
		display: flex;
	}
	.gugl{
		width: 70%;
		text-align: right;
	}
	.nas{
		width: 30%;
	}
	.google form input[type='text']{
		width: 150px;
	}
    .header_grup div{
	width:30px;
}
	header{
		font-size: 1em;
	}
}