html {
	scroll-behavior: smooth;
}


body {
  background-image: url("welcome-images/wood.jpeg");
  background-repeat: repeat;
  overflow-x: hidden;

}

#welcome {
	background: none;
	text-align: center;
	font-size: 4em;
	margin-top: 0px;
	margin-bottom: 15px;
	padding: 10px;
	border-bottom: 2px solid black;
}

h1 {
	text-align: center;
	font-size: 3.7em;
	margin-top: 0px;
	margin-bottom: 10px;
	padding: 10px;
	font-family: "papyrus";
	color: white;
}


#welcome-image {
	width: 100%;
	height: 100%;
	border: 1px solid black;
}


.menu-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.menu-container > a > div{
	background-color: rgba(167, 49, 45, 0.9);
	margin: 10px;
	padding: 10px;
	padding-left: 35px;
	padding-right: 35px;
	font-size: 23px;
	width: 120px;
	text-align: center;
	transition: transform .25s;
	border: 1px solid black;
}

.menu-container > a > div:hover{
	transform: scale(1.15);
	background-color: rgba(167, 49, 45, 1);
}

a {
	text-decoration: none;
	color: black;
	cursor: default;
}

img {
	width: 80px;
	height: 80px;
	position: relative;
	bottom: 30px;
}

.menu {
	display: flex;
	flex-direction: column;
}

.menu-items{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	transition: transform .3s;
	
}

.menu-items > div {
	background-color: rgba(167, 49, 45, 0.7);
	font-size: 22.5px;
	margin: 10px;
	padding: 10px;
	padding-bottom: 0px;
	padding-top: 30px;
	text-align: center;
	border: 1px solid black;
	border-radius: 10px;
	cursor: default;
	height: 50px;
}

.menu-items:hover {
	transform: scale(1.2);
}


#scroll-top {
	position: fixed;
	font-size: 50px;
	font-weight: bold;
	bottom: 20px;
	right: 20px;
	background-color: rgb(0, 100, 100);
	width: 40px;
	height: 40px;
	text-align: center;
	border-radius: 12px;
	z-index: 100;
}

.img-div {
	width: 20%;
}

.name-div {
	width: 15%;
}

.num-div {
	width: 3%;
}

.price-div {
	width: 5%;
}



