@font-face {
    font-family: Light; 
    src: url(../assets/Majesti-Banner-Light.otf);
    font-style: normal;
} 

@font-face {
    font-family: ClearSansLight; 
    src: url(../assets/ClearSans-Bold.ttf);
    font-style: normal;
} 

@font-face {
    font-family: Heavy; 
    src: url(../assets/Majesti-Banner-Heavy.otf);
    font-style: normal;
} 

@font-face {
    font-family: ClearSansBold; 
    src: url(../assets/ClearSans-Bold.ttf);
    font-style: normal;
} 

@font-face {
    font-family: ClearSansMediumItalic; 
    src: url(../assets/ClearSans-MediumItalic.ttf);
    font-style: normal;
} 

@font-face {
    font-family: ClearSansThin; 
    src: url(../assets/ClearSans-Thin.ttf);
    font-style: normal;
} 

@font-face {
    font-family: ClearSansMedium; 
    src: url(../assets/ClearSans-Medium.ttf);
    font-style: normal;
} 

@font-face {
    font-family: ClearSansRegular; 
    src: url(../assets/ClearSans-Regular.ttf);
    font-style: normal;
} 

html {
    min-width: 550px;
    position: relative;
}

body{
    background: url(../images/background.jpg) no-repeat center center fixed;
}

/* Main logo on front page */
.mainLogo {    
    background: url(../images/logo_white.png) no-repeat center center fixed;
    background-size: 600px;
    height: 280px;
}

/* Popup dialog for menu items */
.descriptionDialog {
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	opacity:0;
	transition: opacity 400ms ease-in;
	pointer-events: none;
}

.descriptionDialog:target {
	opacity:1;
	pointer-events: auto;
}

.descriptionDialog > div {
	width: 400px;
	position: relative;
	margin: 10% auto;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background: #F4F1E2;
}

/* Button for description box to close */
.close {
	background: #606061;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	border-radius: 12px;
	box-shadow: 1px 1px 3px #000;
}

/* Button for description box to close */
.close:hover { 
    background: #00d9ff; 
}

/* Description box heading */
.dialogHeading{
    text-align: center;
    font-family: ClearSansBold;
    font-size: 35px;
    color: #414451;
}

.dialogText{
    text-align: center;
    font-family: ClearSansMedium;
    color: black;
}

h1{
    text-align: center;
    font-family: 'Light';
    color: white;
    padding: 50px;
    margin-top: 50px;
}

p.center-text{
    text-align: center;
    font-family: 'Light';
}

/* Small tip written above menu items */
.menu_tip{
    margin-top: 15px;
    font-family: ClearSansThin;
    color: white;
    font-style: italic
}

.menu_content{
    text-align: center;
}

.menu_item{
    margin-top: 15px;
    display: inline-block;
    font-family: ClearSansThin;
    color: white;
    text-decoration: none;
}

.menu_price{
    display: inline-block;
    font-family: ClearSansMediumItalic;
    color: ghostwhite;
}

h2{
    text-align: center;
    font-family: 'Heavy';
    color: white;
    font-size: 40px;
    margin-left: 50px;
    padding-top: 50px;
}

h3{
    text-align: center;
    font-family: 'Heavy';
    color: white;
    font-size: 50px;
    margin-top: 100px;
}

/* Main page content */
.content{
    margin-top: 100px;
    text-align: center;
    color: whitesmoke;
    font-family: 'Light';
    font-size: 20px;
    margin-left: 250px;
    margin-right: 250px
}

/* Vision text in about us page */
.vision_content{
    color: whitesmoke;
    font-family: 'Light';
    font-size: 20px;
    margin-left: 100px;
    margin-right: 100px
}

.address{
    text-align: center;
    color: whitesmoke;
    font-family: 'Light';
    font-size: 20px;
}

/* Decoration that appears when mouse hover over navigation items */
.navigation_bar {
    font-family: 'Raleway', Arial, sans-serif;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}
.navigation_bar * {
    box-sizing: border-box;
    transition: all 0.35s ease;
}
.navigation_bar li {
    display: inline-block;
    list-style: outside none none;
    margin: 0.5em 1.5em;
    padding: 0;
}
.navigation_bar a {
    padding: 0.4em 0;
    color: rgba(255, 255, 255, 1);
    position: relative;
    text-decoration: none;
    display: inline-block;
}
.navigation_bar a:before {
    position: absolute;
    content: '';
    transition: all 0.35s ease;
    opacity: 0;
    top: 25%;
    bottom: 25%;
    left: 0;
    right: 0;
    border-top: 3px solid #DC143C;
    border-bottom: 3px solid #DC143C;
}
.navigation_bar a:hover,
.navigation_bar .current a {
    color: #ffffff;
}
.navigation_bar a:hover:before,
.navigation_bar .current a:before {
    opacity: 1;
    top: 0;
    bottom: 0;
}

body {
    padding: 50px 0;
}