body, html {
  font-family: "Inconsolata", sans-serif;
  font-size: 18px;
  line-height: 1.5em;
  margin: 8px;
  background-color: rgba(169, 104, 40, 0.22)
}
#nav {
  width: 100%;
  overflow: auto;
  background-color: white;
  position: fixed;
  top: 0;
  z-index: 1;
}
nav a{
  float: left;
  display: inline-block;
  color: black;
  text-align: center;
  padding: 14px;
  text-decoration: none;
  width: 25%;
}
nav a:hover{
  background-color: rgba(169, 104, 40, 0.22);
  padding: 10px;
}
nav a:active{
  background-color: rgba(169,104,40,0.22);
  color: white;
}
* {
  box-sizing: border-box;
}
.bgim1 {
  background-position: center;
  background-size: cover;
  position: relative;
  text-align: center;
  background-repeat: no-repeat;
}
#reception-desk {
  opacity: 0.75;
}
main {
  max-width: 768px;
  margin: 0 auto 50px auto;
}
.bbg {
  margin: auto;
  width: 50%;
  text-align: center;
  font-size: 25px;
  letter-spacing: 5px;
}
h5 {
  background-color: white;
  color: black;
  padding: 10px;
}

.bottom-left {
  background-color: white;
  color: black;
  padding: 0 5px;
  position: absolute;
  bottom: 15px;
  left: 16px;
}
.bottom-right {
  background-color: white;
  text-align: right;
  color: black;
  padding: 0 5px;
  position: absolute;
  bottom: 15px;
  right: 16px;
}
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 65px;
  color: black;
  letter-spacing: 4px;
  line-height: 1.5em;
  padding: 0 8px;
  opacity: 0.8;
  background-color: white;
}

.fyi {
  background-color: white;
  text-align: center;
  color: black;
  padding: 2px 5px;
}
#button {
  background-color: white;
  text-align: center;
  color: black;
  padding: 8px 10px;
  letter-spacing: 1px;
}
#button a{
  text-decoration: none;
}
.column{
  position: relative;
  float: left;
  width: 32.5%;
  padding: 5px;
}

.overlay{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: .5s ease;
  background-color: #fef9ff;
  padding: 0 8px;
  text-align: center;
  border-radius: 5px;
}

.column:hover .overlay {
  opacity: 1;
}
.column:hover .image {
  opacity: .3;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}
input {
  width: 100%;
  padding: 15px 20px;
  margin: 8px 0;
}
footer {
  text-align: center;
}

@media (max-width: 480px) {
  .column{
    width: 100%;
  }
  #nav {
    width: 100%;
    overflow: auto;
    background-color: white;
    position: initial;
  }
  nav a{
    padding: 10px;
    float: none;
    display: block;
    width: 100%;
  }
  .centered {
    font-size: 16px;
    letter-spacing: 3px;
  }
  .bottom-left, .bottom-right {
  display: none;
  }
  #button {
    width: 100%;
  }
  .bbg{
    font-size: 16px;
    letter-spacing: 3px;
  }
}
@media (max-width: 1024px){
  .centered {
    font-size: 40px;
    letter-spacing: 5px;
  }
  #nav {
    width: 100%;
    overflow: auto;
    background-color: white;

  }
  #button {
    width: 33.33%;
  }
}
@media (max-width: 720px) {
  .centered {
    font-size: 20px;
    letter-spacing: 3px;
  }
  #nav {
    width: 100%;
    overflow: auto;
    background-color: white;
    position: initial;
  }
  .bottom-left, .bottom-right {
    display: none;
  }
  .bbg{
    font-size: 18px;
    letter-spacing: 3px;
  }
}

