:root {
  --color-nav-background-end: #19471e;
  --color-nav-text: #ffffff;
  --padding-default: 15px;
  --color-nav-background: #157d00;
  --color-construct-background: #fff;
  --color-border-footer: #000;
  --color-hover-nav: #ffffff;
  --color-hover-text: #fff;
  --color-button-background: #428f02;
  --color-button-hover: #0c6442;
  --color-dot: #bbb;
  --color-dot-active: #525252;
}
* {
  border-collapse: collapse;
}
body {
  font-size: 16px;
  margin: 0;
  padding-bottom: 50px;
  padding-top: 70px;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background-image: linear-gradient(
    45deg,
    var(--color-nav-background) 0%,
    var(--color-nav-background-end) 100%
  );
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-bottom: 20px;
  display: flex;
  font-family: "Staatliches", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1.4px;
  height: 50px;
}
ul li a {
  display: block;
  color: var(--color-nav-text);
  padding: var(--padding-default);
  text-decoration: none;
}
ul li a:hover {
  border-bottom: solid 1px var(--color-hover-nav);
  color: var(--color-hover-text);
}
.content-title {
  font-size: 2.5rem;
  font-family: Arial, Helvetica, sans-serif;
}

.content-text {
  font-size: 1.875rem;
  font-family: Arial, Helvetica, sans-serif;
}

.LunchTable {
  display: flex;
  justify-content: center;
  font-size: 1.875rem;
  text-align: center;
}
table {
  border: none;
}

th,
td {
  border: 4px solid;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.content {
  padding-left: 1.25rem;
}
.footer {
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
  background-image: linear-gradient(
    45deg,
    var(--color-nav-background) 0%,
    var(--color-nav-background-end) 100%
  );
  color: var(--color-nav-text);
  text-align: center;
  z-index: 100;
  height: 50px;
}
.gallery-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 80%;
  margin: 0 auto;
  max-width: 800px;
  height: auto;
}

.gallery-slider .images {
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 300px;
  width: 100%;
}

.gallery-slider img {
  max-width: 100%;
}
.gallery-slider .images img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms ease-in-out, visibility 600ms ease-in-out;
  position: absolute;
  left: 170px;
  right: 0;
}

.gallery-slider .images img.active {
  visibility: visible;
  opacity: 1;
  z-index: 1;
}

button {
  background-color: var(--color-button-background);
  color: var(--color-nav-text);
  border: none;
  padding: 141.5px 20px;
  cursor: pointer;
  font-size: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

button:hover {
  border-bottom: solid 1px var(--color-hover-nav);
  color: var(--color-hover-text);
}
button.prev {
  left: -233px;
  background-color: var(--color-nav-background);
}
button.next {
  right: -232.3px;
  background-color: var(--color-nav-background-end);
}
.dot-container {
  text-align: center;
  justify-content: center;
  gap: 10px;
  padding: 5px;
}
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  background-color: var(--color-dot);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: var(--color-dot-active);
}
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.mapandtext {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.map{
  height: 300px;
  width: 600px;
  border: 5px solid;
  border-radius: 20px;
}