html {
  font-family: rufina, sans-serif;
  height: 100vh;
  width: 100vw;
  background-image: linear-gradient(
      112.5deg,
      rgb(214, 214, 214) 0%,
      rgb(214, 214, 214) 10%,
      rgb(195, 195, 195) 10%,
      rgb(195, 195, 195) 53%,
      rgb(176, 176, 176) 53%,
      rgb(176, 176, 176) 55%,
      rgb(157, 157, 157) 55%,
      rgb(157, 157, 157) 60%,
      rgb(137, 137, 137) 60%,
      rgb(137, 137, 137) 88%,
      rgb(118, 118, 118) 88%,
      rgb(118, 118, 118) 91%,
      rgb(99, 99, 99) 91%,
      rgb(99, 99, 99) 100%
    ),
    linear-gradient(
      157.5deg,
      rgb(214, 214, 214) 0%,
      rgb(214, 214, 214) 10%,
      rgb(195, 195, 195) 10%,
      rgb(195, 195, 195) 53%,
      rgb(176, 176, 176) 53%,
      rgb(176, 176, 176) 55%,
      rgb(157, 157, 157) 55%,
      rgb(157, 157, 157) 60%,
      rgb(137, 137, 137) 60%,
      rgb(137, 137, 137) 88%,
      rgb(118, 118, 118) 88%,
      rgb(118, 118, 118) 91%,
      rgb(99, 99, 99) 91%,
      rgb(99, 99, 99) 100%
    ),
    linear-gradient(
      135deg,
      rgb(214, 214, 214) 0%,
      rgb(214, 214, 214) 10%,
      rgb(195, 195, 195) 10%,
      rgb(195, 195, 195) 53%,
      rgb(176, 176, 176) 53%,
      rgb(176, 176, 176) 55%,
      rgb(157, 157, 157) 55%,
      rgb(157, 157, 157) 60%,
      rgb(137, 137, 137) 60%,
      rgb(137, 137, 137) 88%,
      rgb(118, 118, 118) 88%,
      rgb(118, 118, 118) 91%,
      rgb(99, 99, 99) 91%,
      rgb(99, 99, 99) 100%
    ),
    linear-gradient(90deg, rgb(195, 195, 195), rgb(228, 228, 228));
  background-blend-mode: overlay, overlay, overlay, normal;
}

a {
  text-decoration: none;
}
.linky {
  font-size: 24px;
  display: inline-block;
  position: relative;
  color: #000000;
  font-weight: lighter;
}
.linky:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.linky:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #de2910;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

#logo {
  font-size: 18px;
  border: solid rgba(0, 0, 0, 0.5) 1px;
  padding: 5px 80px;
  letter-spacing: 2px;
  font-family: rufina, sans-serif;
}
#logo > a {
  color: #000000;
}

#logo1 {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  letter-spacing: 2px;
  font-family: rufina, sans-serif;
}
.footer-copy {
  color: #ffffff;
}
.footer-copy > a {
  color: #ffffff;
  text-decoration: none;
}

.footer-copy > a:hover {
  text-decoration: underline;
  color: #cccccc;
}
.back {
  padding-left: 0rem;
  padding-right: 0rem;
}

.jumbo {
  position: relative;
  height: 80vh;
  width: 100vw;
}

.jumbo > img {
  height: 50%;
  width: 50%;
}
.blurb {
  position: absolute;
  left: 5%;
  top: 40%;
  font-family: Rufina;
  padding: 15px;
  text-align: center;
  width: 30%;
  font-size: 25px;
}
.order-online {
  position: absolute;
  background-color: #ffde00;
  padding: 5px;
  padding-bottom: 10px;
  padding-top: 10px;
  text-align: center;
  top: 42%;
  left: 60%;
  width: 320px;
  transition: all 0.2s;
}
.order-online:hover {
  color: #000000;
  background-color: #ffffff;
}

.sep {
  margin-top: -5px;
  height: 5vh;
  width: 100vw;
  background-color: #ffde00;
  box-shadow: 0 3px 15px 20px rgba(0, 0, 0, 0.2);
}

.specials {
  width: 80vw;
  height: 100vh;
  text-align: center;
  transition: transform 0.2s;
  margin-top: 5px;
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.specials:hover {
  transform: scale(1.1);
}

.specials > h1 {
  background-color: #fcf3d7;
}
.first > img {
  height: 100%;
  width: 100%;
}

.second > img {
  height: 100%;
  width: 100%;
}

.third > img {
  height: 100%;
  width: 100%;
}
.forth > img {
  height: 100%;
  width: 100%;
}

.cont-hours {
  width: 80vw;
  height: fit-content;
  text-align: center;
  transition: transform 0.2s;
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.12);
  font-size: 15px;
  background-color: #fcf3d7;
  margin-top: 5px;
}
.cont-hours:hover {
  transform: scale(1.1);
}

.cont-hours > p {
  margin: 0px;
}

@media only screen and (min-width: 900px) and (max-width: 2000px) {
  .specials {
    width: 30vw;
    height: 50vh;
    margin: 10px;
    color: rgba(0, 0, 0, 1);
  }
  .cont-hours {
    width: 20vw;
    height: 50vh;
  }
}

.cards-back {
  margin: 0px;
  padding: 0px;
  width: 100vw;
  height: fit-content;
  background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='20' height='20' patternTransform='scale(4) rotate(0)'><rect x='0' y='0' width='100%' height='100%' fill='hsla(358, 97%, 31%, 1)'/><path d='M-10-10A10 10 0 00-20 0a10 10 0 0010 10A10 10 0 010 0a10 10 0 00-10-10zM10-10A10 10 0 000 0a10 10 0 0110 10A10 10 0 0120 0a10 10 0 00-10-10zM30-10A10 10 0 0020 0a10 10 0 0110 10A10 10 0 0140 0a10 10 0 00-10-10zM-10 10a10 10 0 00-10 10 10 10 0 0010 10A10 10 0 010 20a10 10 0 00-10-10zM10 10A10 10 0 000 20a10 10 0 0110 10 10 10 0 0110-10 10 10 0 00-10-10zM30 10a10 10 0 00-10 10 10 10 0 0110 10 10 10 0 0110-10 10 10 0 00-10-10z'  stroke-width='1' stroke='hsla(339,80.3%,12%,1)' fill='none'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,0)' fill='url("#a#a")'/></svg>");
}

.card-link {
  text-decoration: none;
}
@media only screen and (min-width: 320px) and (max-width: 900px) {
  .specials > h1 {
    color: rgba(0, 0, 0, 1);
  }
  .jumbo {
    height: 80vh;
    width: 100vw;
  }

  .jumbo > img {
    height: 50%;
    width: 50%;
  }

  .blurb {
    font-family: Rufina;
    padding: 15px;
    text-align: center;
    width: 30%;
    font-size: 25px;
  }
  .order-online {
    background-color: #ffde00;
    padding: 5px;
    padding-bottom: 10px;
    padding-top: 10px;
    text-align: center;
    width: 30%;
  }
}

.jumbo_bottom {
  height: 80vh;
  width: 100vw;
  background: url("assets/bg.8456e4b189e9.svg") no-repeat center center;
  background-size: cover;
}
.carousel-item {
  height: 40vh;
  width: 50vw;
}

.carousel-item > img {
  height: 15vh;
  width: 15vw;
}

/* The Modal (background) */
.msg-modal {
  display: block;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}
/* Modal Content */
.msg-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 40%;
}
/* The Close Button For Msg-Modal*/
.close-msg-modal {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close-msg-modal:hover,
.close-msg-modal:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
