@font-face {
	font-family: 'Poppins';
	src: url('fonts/poppins/Poppins.ttf') format('truetype');
}
@font-face {
	font-family: 'Pacifico';
	src: url('fonts/pacifico/Pacifico-Regular.ttf') format('truetype');
	font-weight: 200;
}
@font-face {
	font-family: "Source Sans";
	src: url('fonts/source-sans/SourceSans3.ttf') format('truetype');
}
* {
  /* margin: 0;
  padding: 0; */
  box-sizing: border-box;
  font-family: "Source Sans", 'Poppins', sans-serif;
}

.background-image {
	position: fixed;
	left: 0;
	right: 0;
	z-index: -1;
	background-image: url('img/background.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	width: 100%; 
	filter: blur(5px);
}

headerText {
	color: #c21919;
	text-align: center;
	font-size: 50px;
	font-family: 'Pacifico', cursive;
	font-style: normal;
}
header {
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	background-color: white;
	width: 50%;
	margin: auto;
	opacity: 0.95;
	border-radius: 20px;
}

body {
	background-color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5em;	
}

.menu {
  font-family: sans-serif;
  font-size: 14px;
}

.menu-group-heading {
  margin: 0;
  padding-bottom: 5px;
  padding-top: 20px;
  border-bottom: 2px solid #ccc;
  color: #ccc;
  text-align: center;
}

.menu-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
  padding: 1.5em 0;
}

.menu-item {
  display: flex;
  background-color: white;
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  opacity: 0.8;
  border-radius: 10px;
}

.menu-item-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: cover;
  margin-right: 1.5em;
  border-radius: 10px;
}

.menu-item-text {
  flex-grow: 1;
}

.menu-item-heading {
  display: flex;
  justify-content: space-between;
  margin: 0;
}

.menu-item-name {
  margin-right: 1.5em;
}

.menu-item-desc {
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  font-style: italic;
}

@media (max-width: 600px) {
  .menu-item-text {
    font-size: 12px;
  }
  
  .menu-item {
	display: flex;
  }

  .menu-item-img {
    width: 80px;
    height: 80px;
  }
  
  .menu-group-heading {
	padding-top: 5px;  
  }
  
  headerText {
    font-size: 35px;
  }
  
  header {
	width: 80%;  
  }
  
}