/* Terra Pizzeria — small image lightbox */

body, html {
  height: 100%;
  font-family: "Inconsolata", sans-serif;
}
/*
.bgimg {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
*/
.menu {
  display: none;
}
.back{
	background-color:#f9f5ee;
}

/*#myVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
*/
#logo{
font-size:90px;
text-shadow:2px 2px 0 #444;
}

@media (max-width: 600px) {
  .w3-input, .w3-button {
    width: 100% !important;
    font-size: 16px;
  }
  .w3-section {
    margin-bottom: 16px;
  }
}


* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
 background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
 transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}


/* Fading animation */

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

iframe {
  width: 100%;
  height: auto;
  border: 0;
}
@media (max-width: 600px) {
  #logo {
    font-size: 60px;
  }

  .text {
    font-size: 12px;
  }

  .prev, .next {
    font-size: 14px;
    padding: 10px;
  }
}
/* Responsive Hero Video */
.bgimg {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#myVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

@media (max-aspect-ratio: 16/9) {
  #myVideo {
    width: auto;
    height: 100%;
  }
}

@media (min-aspect-ratio: 16/9) {
  #myVideo {
    width: 100%;
    height: auto;
  }
}
.w3-top .w3-row {
  display: flex;
  flex-wrap: nowrap; /* prevent wrapping */
  justify-content: space-between; /* distribute items evenly */
}

.w3-top .w3-col {
  flex: 1 1 auto; /* allow columns to shrink */
  min-width: 60px; /* prevent them from getting too small */
  text-align: center;
}

.w3-top .w3-button {
  padding: 12px 6px;
  font-size: 14px;
  white-space: nowrap; /* prevent text wrapping */
}

@media (max-width: 500px) {
  .w3-top .w3-button {
    font-size: 12px; /* shrink font on tiny screens */
    padding: 10px 4px;
  }
}

.map-container {
  position: relative;
  width: 100%;          /* full width */
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  margin: 0 auto;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}