@import url("https://fonts.googleapis.com/css2?family=Shrikhand&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shrikhand&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body, html {
  margin: 0;
  padding: 0;
}

h1 {
  font-family: 'Shrikhand', cursive;
}

h3 {
  font-family: 'Roboto', sans-serif;
}

.btn {
  min-width: 50px;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff79da), to(#9356dc));
  background: linear-gradient(#ff79da, #9356dc);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(38, 37, 37, 0.1);
          box-shadow: 0px 5px 5px 0px rgba(38, 37, 37, 0.1);
}

.btn:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#fface8), to(#ae80e5));
  background: linear-gradient(#fface8, #ae80e5);
  -webkit-box-shadow: 0px 10px 10px 0px rgba(12, 12, 12, 0.1);
          box-shadow: 0px 10px 10px 0px rgba(12, 12, 12, 0.1);
}

footer {
  min-height: 200px;
  color: white;
  background: #353535;
}

footer .logo_footer {
  font-family: "Shrikhand", cursive;
  font-size: large;
  padding: 25px 0 0 25px;
}

footer ul {
  list-style: none;
  padding: 0 0 0 10px;
  margin-bottom: 30px;
  font-family: 'Roboto', sans-serif;
}

footer ul li {
  margin-top: 5px;
  margin-left: 15px;
}

footer ul a {
  text-decoration: none;
  color: white;
}

footer i {
  width: 30px;
}

body, html {
  margin: 0;
  padding: 0;
}

h1 {
  font-family: 'Shrikhand', cursive;
}

h3 {
  font-family: 'Roboto', sans-serif;
}

.btn {
  min-width: 50px;
  padding: 0 15px 0 15px;
  margin: 0 auto 0 auto;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff79da), to(#9356dc));
  background: linear-gradient(#ff79da, #9356dc);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(38, 37, 37, 0.1);
          box-shadow: 0px 5px 5px 0px rgba(38, 37, 37, 0.1);
}

.btn:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#fface8), to(#ae80e5));
  background: linear-gradient(#fface8, #ae80e5);
  -webkit-box-shadow: 0px 10px 10px 0px rgba(12, 12, 12, 0.1);
          box-shadow: 0px 10px 10px 0px rgba(12, 12, 12, 0.1);
}

footer {
  min-height: 200px;
  color: white;
  background: #353535;
}

footer .logo_footer {
  font-family: "Shrikhand", cursive;
  font-size: large;
  padding: 25px 0 0 25px;
}

footer ul {
  list-style: none;
  padding: 0 0 0 10px;
  margin-bottom: 30px;
  font-family: 'Roboto', sans-serif;
}

footer ul li {
  margin-top: 5px;
  margin-left: 15px;
}

footer ul a {
  text-decoration: none;
  color: white;
}

footer i {
  width: 30px;
}

.spinner_container {
  width: 100%;
  height: 100%;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
  -webkit-animation-name: fade;
          animation-name: fade;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

@-webkit-keyframes fade {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    opacity: 0;
  }
}

@keyframes fade {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    opacity: 0;
  }
}

@supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .spinner_container {
    background-color: rgba(255, 255, 255, 0.9);
  }
}

.spinner {
  --size: 200px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  -webkit-perspective: 800px;
          perspective: 800px;
}

.inner {
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid transparent;
}

.inner.one {
  left: 0;
  top: 0;
  -webkit-animation: rotate-one 1s linear infinite;
          animation: rotate-one 1s linear infinite;
  border-bottom: 5px solid #9356dc;
}

.inner.two {
  right: 0;
  top: 0;
  -webkit-animation: rotate-two 1s linear infinite;
          animation: rotate-two 1s linear infinite;
  border-right: 5px solid #ff79da;
}

.inner.three {
  right: 0;
  bottom: 0;
  -webkit-animation: rotate-three 1s linear infinite;
          animation: rotate-three 1s linear infinite;
  border-top: 5px solid #99e2d0;
}

@-webkit-keyframes rotate-one {
  0% {
    -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
            transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
            transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes rotate-one {
  0% {
    -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
            transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
            transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@-webkit-keyframes rotate-two {
  0% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
            transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
            transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes rotate-two {
  0% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
            transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
            transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@-webkit-keyframes rotate-three {
  0% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
            transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
            transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}

@keyframes rotate-three {
  0% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
            transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
            transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}

main {
  width: 100%;
}

body {
  margin: 0;
}

.logo {
  width: 50%;
  margin-left: 25%;
  margin-right: 25%;
}

@media screen and (min-width: 768px) {
  .logo {
    width: 20%;
    margin-left: 40%;
    margin-right: 40%;
  }
}

#top_menu {
  min-height: 250px;
  background: #f6f6f6;
  -webkit-box-shadow: 0 -2px 5px 0 rgba(38, 37, 37, 0.3);
          box-shadow: 0 -2px 5px 0 rgba(38, 37, 37, 0.3);
}

#top_menu #location {
  text-align: center;
  background-color: #eaeaea;
  height: 50px;
  font-family: 'Roboto', sans-serif;
}

#top_menu #explore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

#top_menu #explore h3 {
  font-weight: 900;
}

#top_menu #explore p {
  display: block;
  max-width: 100%;
  margin-left: 30px;
  margin-right: 30px;
}

#how_to {
  min-height: 250px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
}

@media screen and (min-width: 1024px) {
  #how_to {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto auto;
        grid-template-columns: auto auto auto;
    -ms-grid-rows: 25px auto;
        grid-template-rows: 25px auto;
    grid-gap: 15px;
    min-height: 50px;
  }
}

#how_to h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: bolder;
  text-align: left;
}

@media screen and (min-width: 1024px) {
  #how_to h3 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / span 3;
  }
}

#how_to p {
  border: 1px solid black;
  font-family: 'Roboto', sans-serif;
  border-radius: 25px;
  height: 50px;
  text-align: center;
}

#how_to .how_look {
  -webkit-box-shadow: 0px 5px 5px 0px rgba(38, 37, 37, 0.1);
          box-shadow: 0px 5px 5px 0px rgba(38, 37, 37, 0.1);
  background: #f6f6f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  #how_to .how_look {
    margin: 20px;
    height: 20px;
    width: 250px;
  }
}

#how_to .how_look:hover {
  background: rgba(174, 128, 229, 0.2);
  -webkit-box-shadow: 0px 10px 10px 0px rgba(12, 12, 12, 0.1);
          box-shadow: 0px 10px 10px 0px rgba(12, 12, 12, 0.1);
}

#how_to .how_look:hover .how_icon {
  color: #9356dc;
}

#how_to .how_look .how_number {
  border-radius: 50%;
  margin-left: -30px;
  padding: 0 5px 0 5px;
  background: #9356dc;
  color: white;
  font-family: 'Roboto', sans-serif;
}

#how_to .how_look .how_icon {
  color: grey;
  margin: 0 15px 0 15px;
  width: 25px;
}

#how_to .how_look .how_text {
  text-align: left;
  font-family: 'Roboto', sans-serif;
  font-weight: bolder;
  width: 100%;
}

@media screen and (min-width: 768px) {
  #how_to .how_look .how_text {
    margin-top: -5px;
  }
}

#restaurants {
  padding: 10px 20px 30px 20px;
  background: #f6f6f6;
}

@media screen and (min-width: 768px) {
  #restaurants {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
    grid-gap: 15px;
  }
}

#restaurants .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0px;
}

@media screen and (min-width: 768px) {
  #restaurants .menu {
    min-width: 350px;
  }
}

#restaurants .menu a {
  border: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  color: black;
}

#restaurants #rest_title {
  font-family: 'Roboto', sans-serif;
  font-size: larger;
  font-weight: bolder;
  padding: 60px 0 30px 0;
}

@media screen and (min-width: 768px) {
  #restaurants #rest_title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    padding-top: 25px;
  }
}

#restaurants .menu_image {
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 70%;
     object-position: 70%;
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

#restaurants .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 10px;
  margin-bottom: -40px;
}

#restaurants .tag .new_tag {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #278870;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #99e2d0;
  width: 80px;
  height: 30px;
  z-index: 9;
  border-radius: 3px;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(38, 37, 37, 0.1);
          box-shadow: 0px 5px 5px 0px rgba(38, 37, 37, 0.1);
}

.description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  margin: -4px 0 20px 0;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(38, 37, 37, 0.1);
          box-shadow: 0px 5px 5px 0px rgba(38, 37, 37, 0.1);
}

.description .rest_desc {
  width: 85%;
  padding: 5px 0 0 10px;
  font-family: 'Roboto', sans-serif;
}

.description .rest_desc h3 {
  margin: 0;
}

.description .rest_desc p {
  margin: 3px 0 5px 0;
}

.description .heart {
  font-size: 25px;
  width: 15%;
  padding: 0 10px 0 0;
}

.description .heart:hover .full_heart {
  opacity: 1;
  -webkit-transition: 1.5s;
  transition: 1.5s;
}

.description .heart:hover .empty_heart {
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}

.description .heart .fa-stack:hover {
  -webkit-transition: 1.5s;
  transition: 1.5s;
}

.description .heart .empty_heart {
  color: black;
}

.description .heart .full_heart {
  background: radial-gradient(ellipse at bottom, #9356dc, #ff79da);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  opacity: 0;
}
/*# sourceMappingURL=index.css.map */