body {
  background-color: #fff;
  font-family: "Open sans",sans-serif;
  font-size: 25px;
  color: #000;
  margin: 5px;
  padding: 0px;
}

.header {
  text-align: center;
  margin-bottom: 25px;
}

.header-info {
  background-color: rgb(17, 92, 155);
  vertical-align: middle;
  font-family: "Open sans",sans-serif;
  font-style: italic;
  text-align: left;
  font-size: 13px;
  color: #fff;
  height: 20px;
  padding-bottom: 3px;
}

.header-info-right {
  float: right;
  padding-right: 25px;
}

.header-info img {
  filter: invert(100%);
  height: 10px;
  padding-top: 5px;
  padding-right: 10px;
  padding-left: 25px;
}

.header-info a, .header-info a:link {
  text-decoration: none;
  color: #fff;
}

.header-bar {
  width: 100%;
}

.header-logo-container {
  background-image: url("../img/lodgeroom.svg");
  background-position: center;
  background-size: cover;
  height: 200px;
  background-color: #000;
  opacity: 0.9;
  border: 1px solid rgba(0, 0, 0, .5);
}

.header-logo {
  font-family: Times New Roman;
  font-size: 35px;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 0px;
}

.header-logo a {
  text-decoration: none;
  color: rgba(255,255,255,1);
  text-shadow: 2px 2px 2px rgba(0,0,0,.5);
}

.header-address {
  font-size: 15px;
  color: #fff;
}

.menu {
  background-color: #fff;
  margin-top: 25px;
  width: 1fr;
  margin: 10px;
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.menu-item-container {
  background-color: #e6ecff;
  border: 1px solid #e6e6e6;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
  font-size: 0.6em;
  display: block;
}

.menu-item {
  margin: 15px;
  padding: 10px;
  font-size: 16px;
  text-align: left;
}

.menu-item img {
  width: 55%;
  height: auto;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
}

.menu-item a {
  text-decoration: none;
  color: #000;
}

.menu-item a:hover {
  color: #003cff;
  font-weight: bold;
  text-shadow: #e0e0e0 1px 1px 0
}

.menu-item-container .button {
  align-self: center;
  vertical-align: middle;
  font-family: "Open sans",sans-serif;
  font-style: italic;
  font-size: 13px;
  width: 98%;
  padding: 5px;
  text-align: center;
  background-color: #0027b3;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
}

.menu-item-container .button a {
  text-decoration: none;
  color: #fff;
}

.menu-item-container .button a:hover {
  font-weight: bold;
  letter-spacing: 0.5px;
}

.menu-item iframe {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.footer {
  background-color: rgb(17, 92, 155);
  color: #fff;
  margin-top: 35px;
  padding: 10px;
  font-size: 12px;
  text-align: center;
  font-style: italic;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
}

@media only screen and (min-width: 1150px) {
  body {
    font-size: 25px;
  }

  .header-logo {
    font-size: 45px;
  }

  .header-address {
    font-size: 15px;
  }

  .menu-item-container {
    font-size: 1.2em;
  }

  .menu-item-container .button {
    font-size: 10px;
  }

  .menu {
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
  }

}
