@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Montserrat&display=swap');
@import url('https://blogfonts.com/css/aWQ9MTI3OTExJnN1Yj05MTEmYz1lJnR0Zj1FZHdhcmRpYW5TY3JpcHRJVEMudHRmJm49ZWR3YXJkaWFuLXNjcmlwdC1pdGM/Edwardian Script ITC.ttf');
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Ultra&display=swap');
@import url(https://fonts.googleapis.com/css?family=Alegreya+Sans:300);

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}

html {
  font-family: 'Montserrat', sans-serif;
  background-color: white;
}

.nav {
  border-bottom: 1px solid #EAEAEB;
  text-align: right;
  height: 70px;
  line-height: 70px;
  background-color: black;
}

.nav h1 {
  color: white;
  float: left;
  display: table-cell;
  vertical-align: middle;
  font-size: 50px;
  margin: 0;
  padding-left: 5%;
  animation: fadeIn 1s;
  font-family: "Edwardian Script ITC";
}

.menu {
  margin: 0 2% 0 0;
  animation: fadeIn 1s;
  font-family: 'Montserrat', sans-serif;
  padding: 0 2px;
}

.menu a {
  clear: right;
  text-decoration: none;
  color: white;
  margin: 0 20px;
  line-height: 70px;
}

.hover {
  transition: .3s ease;
  display: inline-block;
}

.hover:hover {
  transform: scale(1.1);
}

span {
  color: white;
}

label {
  margin: 0 40px 0 0;
  font-size: 26px;
  line-height: 70px;
  display: none;
  width: 26px;
  float: right;
}

#toggle {
  display: none;
}

.Heading {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  margin: 20px;
}

.contact-info {
  margin-top: 10px;
}

.contact-info h2 {
  margin: 10px 0;
}

.hours {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.map {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.map iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

@media screen and (min-width: 24.375em) {
  .legal .legal__links {
    margin-left: auto;
  }
}

@media screen and (min-width: 40.375em) {
  .footer__nav > * {
    flex: 1;
  }
  
  .nav__item--extra {
    flex-grow: 2;
  }
  
  .footer__addr {
    flex: 1 0px;
  }
  
  .footer__nav {
    flex: 2 0px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media only screen and (max-width: 750px) {
  label {
    display: block;
    cursor: pointer;
  }
  .menu {
    width: 100%;
    display: none;
    text-align: center;
  }
  .menu a {
    width: 100%;
    margin: 1px;
    background-color: black;
    float: left;
  }
  #toggle:checked + .menu {
    display: contents;
  }

  h2{
    font-size: 20px;
  }
}
