@font-face {
	font-family: "PressStart2P-Regular";
	src: url("fonts/PressStart2P-Regular.ttf") format('truetype');
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Roboto-Regular";
	src: url("fonts/Roboto.ttf") format('truetype');
	font-style: normal;
	font-display: swap;
}
body{
	margin: 0px 0px 0px 0px;
	min-height: 100vh;
	background-color: #63331D;
	background-image: url("img/body-background.png");
}
#head{
	width: 100%;
	background-image: url("img/header-background.png");
	height: 355px;
	background-repeat: repeat-x;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
#logo-head{
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 5.4));
}
.img-footer{
	filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 5.4));
}
#right-head{
	position: absolute;
	right: 0%;
	height: auto;
}
#body{
	width:auto;
	padding-bottom: 208px;
	color: #f3e9b3;
	font-size: 18px;
	font-family: "roboto-Regular";
	padding-left: 100px;
	padding-right: 100px;
	padding-top: 30px;
}
#footer{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 208px;
	z-index: 100;
	box-sizing: border-box;
  	display: flex;
	justify-content: space-between;
	align-items:flex-end;
}
#menu{
	width:100%;
	background-image: url("img/menu-background.png");
	background-repeat: repeat-x;
	height: 48px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	
}
.button-menu{
	width: 169px;
	height: 40px;
	background-image: url("img/buttons.png");
	background-size: 169px 123px;
	background-position: 0 -41;
	margin-left: 5px;
	margin-right: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.button-menu:hover{
	background-position: 0 0;
}
.button-menu:active{
	background-position: 0 -82;
}
.placeholder{
	width: 100%;
	height: 2px;
	background-color: #0e130e;
}
.link-menu{
	color: #b1b1b1;
	font-weight: bold;
	text-decoration: none;
	font-family: "PressStart2P-Regular";
	font-size: 10px;
}
.link-menu:hover{
	color: #e6e2e1;
}
.link-menu:active{
	color: #7f7c7c;
}
h1{
	font-family: "PressStart2P-Regular";
	font-size: 18px;
}
a{
	color: #f3e9b3;
}
a:hover{
	color: #faf8f0;
}
a:active{
	color: #dccc8f;
}
a:visited{
	color: #f3e9b3;
}
#menu-swiper{
	color: #f3e9b3;
	font-size: 10px;
	font-family: "roboto-Regular";
	width:100%;
	text-align: center;
	display: none;
	
}
@media (max-width: 1490px) {
	#right-head{
		display:none;
	}
}
@media (max-width: 1175px) {
	#menu{
		overflow-x: auto;
		overflow-y: hidden;
		height: 68px;
	}
	#left-menu{
		display: none;
	}
	#right-menu{
		display: none;
	}
}
@media (max-width: 1082px) {
	#menu{
		height: 68px;
	}
}
@media (orientation: portrait){
	#body{
		padding-left: 20px;
		padding-right: 20px;
		font-size: 12px;
	}
	#head{
		height: 180px;
		justify-content: left;
		background-size: auto 100%;
	}
	#left-head{
		height:180px;
	}
	#right-head{
		display:none;
	}
	#logo-head{
		width: 70%;
		max-width: 300px;
		left: 50%;
		transform: translateX(-50%);
	}
	#menu{
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
		justify-content: flex-start;
		gap: 6px;
		height: 48px;
	}
	.img-footer{
		width: 30%;
		height: auto;
	}
	#left-menu{
		display: none;
	}
	#right-menu{
		display: none;
	}
	h1{
		font-size: 14px;
	}
	#menu-swiper{
		display: block;
	}
}