:root{
	--main: #000000;
        --text: rgb(50, 50, 50);
	--content: #eeeeee;
	--background: white;
	--code: #f2f2f2;
	--logotext: #505050;
	--captiontext: gray;
}

/*@media (prefers-color-scheme: dark) {
	:root{
		--text: #e6e6e6;
		--content: #2f2f2f;
		--background: rgb(23, 23, 23);
		--code: #2f2f2f;
		--logotext: #d4d4d4;
	}
}*/

html, body{
	color: var(--text);
	padding: 0;
	margin: 0;
	height: 100vh;
	overflow-x: hidden;
	font-family: Segoe UI,SegoeUI,Helvetica Neue,Helvetica,Arial,sans-serif;
}

button{
	cursor: pointer;
}

a{
	text-decoration: none !important;
}

#content{
	background-color: var(--content);
    	width: 100vw;
   	min-height: calc(100% - 84px);
    	position: relative;
    	display: flex;
	flex-flow: column;
}

#content #main{
	width: 100%;
	flex-grow: 1;
}

#content .banner{
	width: 100%;
}

#top-bar{
	width: 100%;
	height: 60px;
	position: relative;
	display: flex;
	align-items: center;
	background-color: var(--background);
	box-shadow: 0px 0px 1px 2px rgb(200, 200, 200);
}

#top-bar .nav{
	height: 100%;
	display: flex;
	align-items: center;
}

#top-bar .right{
	margin-left: auto;
	display: flex;
	justify-content: end;
	font-weight: 300;
}

#top-bar button{
	border: none;
	background-color: var(--background);
	color: var(--text);
	font-family: Segoe UI,SegoeUI,Helvetica Neue,Helvetica,Arial,sans-serif;
	padding: 0;
	margin-left: 20px;
	margin-right: 20px;
	font-size: 1rem;
	font-weight: 300;
	padding-bottom: 0.25px;
	border-bottom: solid transparent 2px;
}

#top-bar button:hover{
	border-bottom: solid var(--text) 2px;
}

#top-bar .underline{
        border-bottom: solid var(--text) 2px;
}

#top-bar .right .not-important:hover{
        opacity: 50%;
}

#top-bar .logo{
	padding-left: 10px;
	display: flex;
	align-items: center;
}

#top-bar .logo img{
	width: 25px;
	height: 25px;
	border-radius: 3px;
	display: inline-block;
}

#top-bar .logo h1{
	font-family: Segoe UI,SegoeUI,Helvetica Neue,Helvetica,Arial,sans-serif;
	font-weight: 500;
	font-size: 20px;
	color: var(--logotext);
	padding-left: 5px;
	display: inline-block;
	position: relative;
}


#top-bar .text-divider{
	padding-left: 10px;
	padding-right: 15px;
	height: 23px;
	border-right: solid var(--text) 1px;
}

#top-bar #menu-btn{
	display: none;
}

#menu{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0%;
	right: 0%;
	z-index: 1;
	background-color: rgb(0, 0, 0, 0.2);
}

#menu .inside{
	width: 320px;
	height: 100%;
	position: absolute;
	top: 0%;
	right: 0%;
	background: var(--background);
}

#menu .inside .top{
	width: 100%;
	height: 50px;
	border-bottom: solid #404040 1px;
}

#menu .inside .top .home{
	padding-left: 15px;
}

#menu .inside .top h1{
	font-family: Segoe UI,SegoeUI,Helvetica Neue,Helvetica,Arial,sans-serif;
        font-weight: 600;
        font-size: 20px;
        color: var(--text);
        padding-left: 10px;
        display: inline-block;
        position: relative;
        top: -1.5px;
	padding-left: 10px;
}

#menu .inside .top button{
	float: right;
	height: 50px;
	width: 50px;
	color: var(--text);
	background-color: var(--background);
	border: none;
	border-left: solid #404040 1px;
}

#menu .inside button{
	width: 300px;
	height: 50px;
	border: none;
	background: transparent;
	color: var(--text);
	padding-left: 20px;
	font-family: Segoe UI,SegoeUI,Helvetica Neue,Helvetica,Arial,sans-serif;
	font-weight: bold;
	text-align: left;
	font-size: 14px;
}

#footer{
	width: 100%;
	height: 23px;
	background-color: var(--background);
	position: relative;
}

#footer .nav{
	height: 100%;
	width: 50%;
	display: flex;
	align-items: center;
}

#footer .right{
	float: right;
	justify-content: end;
}

#footer .left{
	float: left;
	justify-content: start;
}

#footer p{
	color: var(--text);
	font-family: arial;
	padding-left: 10px;
	padding-right: 10px;
	font-size: 11px;
}

@media only screen and (max-width: 600px){
	#top-bar .not-important{
		display: none;
	}

	#top-bar #menu-btn{
		display: block;
	}

	#top-bar .logo{
		padding-left: 25px;
	}
}

@media only screen and (min-width: 1200px){
        #top-bar{
                padding-left: 4%;
                padding-right: 4%;
                width: 92%;
        }

        #main{
                padding-left: 4%;
                padding-right: 4%;
                width: 92vw !important;
        }
}


@media only screen and (min-width: 1500px){
        #top-bar{
                padding-left: 8%;
                padding-right: 8%;
                width: 84%;
        }

        #main{
                padding-left: 8%;
                padding-right: 8%;
                width: 84vw !important;
	}
}
