@font-face {
    font-family: "CloisterBlack";
    src:url("https://chazu.arkku.net/files/font/CloisterBlack.ttf") format('truetype');
}

@font-face {
    font-family: "CloisterBlack2";
    src:url("CloisterBlack.ttf") format('truetype');
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


body {
    background-color :#b7a791;
	font-family: Segoe UI,Frutiger,Frutiger Linotype,Dejavu Sans,Helvetica Neue,Arial,sans-serif;
	padding: 0px;
	margin: 0px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}


#top-bar {
    width:100vw;
    height:10vh;
    background-color: #4b453c;
    box-shadow:0px 0px 5px 5px rgba(0, 0, 0, 0.8);
    position:fixed;
    top:0;
    left:0;
    display: flex;
	align-items: center;
    justify-content: space-between;
}

#top-bar > .icon-cont {
    height:100%;
    aspect-ratio: 1/1;
    display: flex;
	align-items: center;
    justify-content: center;
    color:white;
    cursor:pointer;
}

#top-bar > .icon-cont > .icon {

    font-size:2em;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

#top-bar > .title-cont {
    height:100%;
    display: flex;
	align-items: center;
    justify-content: center;
    flex:1;
}

#top-bar > .title-cont > .title {
    color:white;
    font-size:1.5em;
    font-family: 'CloisterBlack';
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

#menu-items {
    border-top:1px solid rgb(53, 53, 53);
    position:fixed;
    width:100vw;
    margin-top:10vh;
    display:flex;
    flex-direction: column;
    position:absolute;
    background-color: rgb(79, 85, 87);
    box-shadow:0px 5px 5px 0px rgba(0, 0, 0, 0.8);
    overflow-y:scroll;
    font-family: 'CloisterBlack';
}

#menu-items > .item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    cursor:pointer;
    padding: 10px 10px 10px 10px;
   
    font-size:1.5em;
    color:white;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

#menu-items > .item.selected {
    background-color:rgba(0, 0, 0, 0.2);
} 

#menu-items > .item:hover {
    background-color:rgba(0, 0, 0, 0.1);
}

#menu-items > .item:active {
    background-color:rgba(0, 0, 0, 0.4);
}

#content {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-top:10vh;
    font-family: 'CloisterBlack';
}

#content > .title {
    font-size:2em;
 
    width:100%;
    text-align: center;
    margin-top:30px;
}

#content > .text {
    font-size:1.5em;

    width:100%;
    text-align: center;
    font-weight: 300;
}
