 /* WebKit and Opera browsers */
  @-webkit-keyframes spinner {
    from { -webkit-transform: rotateY(0deg);    }
    to   { -webkit-transform: rotateY(-360deg); }
  }

  /* all other browsers */
  @keyframes spinner {
    from {
      -moz-transform: rotateY(0deg);
      -ms-transform: rotateY(0deg);
      transform: rotateY(0deg);
    }
    to {
      -moz-transform: rotateY(-360deg);
      -ms-transform: rotateY(-360deg);
      transform: rotateY(-360deg);
    }
  }
   #stage {
    margin: 1em auto;
    -webkit-perspective: 1200px;
    -moz-perspective: 1200px;
    -ms-perspective: 1200px;
    perspective: 1200px;
  }
    #spinner {
    -webkit-animation-name: spinner;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 6s;

    animation-name: spinner;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 6s;

    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }

  #spinner:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
  }
  #spinner img {
    position: absolute;
    border: 1px solid #ccc;
    background: rgba(255,255,255,0.8);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
  }
#roomAbout{
    margin-top: 67px;
    text-align: justify;
    font-size: 16px;
    color: white;
    margin-bottom: 0px;
    background-color: black;
    border-color: #EC675A;
    border: 2px solid #EC675A;
}
#foodtext{
      background: darkred;
    height: 260px;
    text-align: justify;
    color: white;
    /* margin: auto; */
    padding-top: 7%;
    font-size: 16px;
    text-shadow: 1px 2px black;
}
#bartext{
  background: saddlebrown;
    height: 260px;
    text-align: center;
    color: white;
    /* margin: auto; */
    padding-top: 1%;
    font-size: 16px;
    /*text-shadow: 1px 2px darkslategrey;*/
}
#coffy{
  background: black;
  margin-top: 2%;
}
#keyam{
  height: 80px;
  width: 85px;
  margin: auto;
}
#keyam:hover{
    height: 84px;
  width: 89px;
  margin: auto;
  background: whitesmoke;
    border-radius: 50%;
}
#welcometext{
      font-size: 16px;
      /*background-color: lightseagreen;
      color: white;*/
    }
    #b1:hover{
      transform: scale(1.03);
    }
    .highlight:hover{
      font-size: 16px;
    }
    #hrrow hr{
      margin-top: 10px;
      margin-bottom: 10px;
    }
    #marginbottom{
      margin-bottom: 35px;
          margin-top: 50px;
    }
  
.navbar-inverse .navbar-nav>li>a {
    color: white;
}
.navbar-inverse {
    background-color: #C9302C;
}
.navbar-nav>li>a {
    /* padding-top: 10px; */
    /* padding-bottom: 10px; */
    line-height: 13px;
}
.navbar-inverse .navbar-nav>li:hover{
    border-left: 1px solid white;
    border-right: 1px solid white;
}
.navbar{
  border: 0px;
}
  .navbar-inverse .navbar-nav>li>a:hover{
    color: white;
}
 
@media print {
  @page { margin: 0; }
  body { margin: 1.6cm; }
}