
#topbar {
	xborder:1px solid red;
	xposition:fixed;
	top:0;
	left:0;
	width:100vw;
	padding:0px;
	margin:0px;
	background-color:#15171a;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.7);
	z-index: 3;
	margin-bottom:10px;

	display: flex;
	flex-direction: row;
	justify-content: center;

}	

#topbar > .content {
	xborder:1px solid red;
	xfont-family:Roboto Mono, consolas,monospace;
	width:100%;
	xmargin:auto;
	font-size:1.5em;
	max-width: 1000px;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	justify-content: start;
	align-items: center;
	xbackground-color:black;
}

#topbar > .content > .image-cont {
	display: flex;
	justify-content: center;
	align-items: center;
	width:50px;
	aspect-ratio: 1/1;
} 

#topbar > .content > .image-cont > img.image {
	width:80%;
	height:80%;
	border-radius:10px;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.7);
} 

#topbar > .content > .title {
	xborder:1px solid grey;
	padding:5px;
	font-size: 1.5em;
	xmargin:0px 5px 0px 0px;
	height:100%;
	color:grey;
	cursor:pointer;
	text-decoration:none;
	transition: all 0.1s;
	xtext-shadow: 
        0 0 1vw #FA1C16, 
        0 0 3vw #FA1C16, 
        0 0 10vw #FA1C16, 
        0 0 10vw #FA1C16, 
        0 0 .4vw #FED128, 
        1px 1px 0px #806914
	;
	xcolor: #ffd748;
}	



