body, h1, h2, p, ul {
  margin: 0;
  padding: 0;
  font-family: papyrus;
}

body{
  background-color: blanchedalmond;
  height: 100%;
}

header {
  display: flex;
  background-color: brown;
  color: blanchedalmond;
  text-align: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
header img {
  width: 100px;
  height: auto;
  margin-left: 20px;
  margin-top: 15px;
}
.header-content {
  max-width: 800px;
  margin: 0 auto;
}
h3{
  color: blanchedalmond;
  background-color: brown;
  text-align: center;
  font-size: 14px;
  margin-top: -2%;
}

header h1 {
  font-size: 50px;
}

header a {
  margin-top:100px;
}

header a:hover{
  text-decoration: overline;
  text-shadow: 2px 2px 4px white;
}

.pic{
  background-image: url(food.jpg);
  background-size: cover;
  text-align: center;
  text-decoration: overline;
  padding: 100px 0;
  color: blanchedalmond;
  height: 300px;
}

.glow {
  font-size: 45px;
  color: blanchedalmond;
  text-align: center;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}
@keyframes glow {
  from {
    text-shadow: 0 0 10px blanchedalmond, 0 0 20px #000000, 0 0 30px #000000, 0 0 40px #000000, 
                  0 0 50px greenyellow, 0 0 60px green, 0 0 70px gold;
  }
  to {
    text-shadow: 0 0 20px blanchedalmond, 0 0 30px #000000, 0 0 40px #000000, 0 0 50px #ff4da6, 
                  0 0 60px brown, 0 0 70px red, 0 0 80px palegoldenrod;
  }
}

.pic img {
  width: 100%;
  max-width: 1000px; 
}

nav ul {
  background-color: brown;
  list-style: none;
  padding: 10px 0;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav a {
  text-decoration: none;
  color: blanchedalmond;
  font-weight: bold;
}

section {
  padding: 40px 0;
  text-align: center;
  color: brown;
}

style{
  box-sizing: border-box;
}
#menu {
  height:900px;
  margin: 0 auto;
  width: 769px;
}
.slider{
  width: auto;
  text-align: center;
  overflow: hidden;
}
.slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.slides::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.slides::-webkit-scrollbar-thumb {
  background: brown;
  border-radius: 10px;
}
.slides > div {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 769px;
  height: 800px;
  margin-right: 50px;
  border-radius: 10px;
  background: #eee;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
}

#slide-1{
  background-image: url(menu1.jpg);
  background-size: 769px 800px;
  margin: 0 auto;
  background-repeat: no-repeat;
}
#slide-2{
  background-image: url(menu2.jpg);
  background-size: 769px 800px;
  margin: 0 auto;
  background-repeat: no-repeat;
}
#slide-3{
  background-image: url(menu3.jpg);
  background-size: 769px 800px;
  margin: 0 auto;
  background-repeat: no-repeat;
}
#slide-4{
  background-image: url(menu4.jpg);
  background-size: 769px 800px;
  margin: 0 auto;
  background-repeat: no-repeat;
}
#slide-5{
  background-image: url(menu5.jpg);
  background-size: 769px 800px;
  margin: 0 auto;
  background-repeat: no-repeat;
}
.slider > a {
  display: inline-flex;
  width: 10rem;
  height: 2.5rem;
  background: white;
  text-decoration: none;
  color: brown;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 0 0.5rem 0;
  position:relative; /* Added absolute positioning */
}
.slider > a:active {
  top: 1px;
}
.slider > a:hover{
  text-decoration: overline;
  text-shadow: 2px 2px 4px brown;
}
@supports (scroll-snap-type) {
  .slider > a {
    display: none;
  }
}

.location {
  max-width: 80%;
  overflow: hidden;
  border-radius: 5px;
  margin: 0 auto;
}
.location iframe {
 
  width: 100%;
  height: 450px;
  border: 0;
}

p{
  color: brown;
  font-size: 18px;
  text-align: center;
}

#hours{
  display: flex;
  font-family: papyrus;
}
#hours table{
  margin: 0 auto;
}

.hours{
  width: 50%; 
  box-sizing: border-box;
  margin: 20px;
}

.contact{
  width: 50%; 
  box-sizing: border-box;
  margin: 20px;
}

.contact a{
  color: brown;
}
.contact a:hover{
  text-decoration: overline;
  text-shadow: 2px 2px 4px brown;
}

.slideshow-container {
  max-width: 500px;
  position: relative;
  margin: auto;
}

.text {
  color: blanchedalmond;
  background-color: brown;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 477px;
  text-align: center;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: brown;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

footer{
  background-color: brown;
  color: blanchedalmond;
  text-align: center;
  padding: 10px 0;
  clear: both;
}
 

