/*
* {
    outline: orange solid 1px;
}
*/

/* @font-face {
  font-family: "Bell MT Bold";
  src: url("Bell_MT_Bold.otf") format("opentype");
} */

@font-face {
  font-family: "Bell MT Regular";
  src: url("Bell_MT_Regular.otf") format("opentype");
}

body {
  height: 100vh;
  margin: 0;
  font-size: x-large;
  font-family: "Bell MT Regular", serif;
  /* font-family: "Bell MT Bold", serif; */
  color: white;
  background-image: url("Restaurant.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.frosted-glass {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  background-color: rgba(99, 96, 96, 0.15);
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); */
  backdrop-filter: blur(7px);
}

.inner-flex {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

a {
  all: unset;
}

button {
  padding: 20px;
  cursor: pointer;
  background-color: rgba(99, 96, 96, 0.15);
  border: white solid 2px;
  transition: 500ms;
  text-decoration: none;
  color: white;
  font-size: 30px;
  font-family: inherit;
}

button:hover {
  background-color: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
}

.hours {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

#address {
  cursor: pointer;
  transition: all 0.3s ease;
}

#address:hover {
  transform: scale(1.1);
}

#facebook-logo {
  cursor: pointer;
  transition: all 0.3s ease;
}

#facebook-logo:hover {
  transform: scale(1.1);
}

@media (max-width: 700px) {
  body {
    font-size: medium;
    overflow: hidden;
    background-position: 20%;
  }

  .inner-flex {
    justify-content: start;
  }

  #logo {
    height: 150px;
    width: 200px;
  }

  button {
    font-size: large;
  }
}

@supports not (backdrop-filter: blur()) {
  /*For firefox since it doesn't support blur feature */
  .background-container {
    /*Instead of having blur effect, just increasing opacity*/
    background-color: rgba(99, 96, 96, 0.7);
  }
}
