/* =========================================== */
/* Menu and nav button section. Not set up for RWD */
/* =========================================== */
  .navbtn {
    border: 1px solid #3b6edc;
    border-radius: 10px;
    padding: 5px 10px 8px;
    box-shadow: inset 0 1px 0 #ffffff, inset 0 -1px 3px #d6d6d6;
    margin-right: 0px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    font-weight: bold;
    font-size: 9pt;
    text-decoration:none;
    color:black;
  }
.menubox {
    background: #f0f0f0;
    padding: 7px 5px 14px 5px;
    border-radius: 8px;
    display: table;
    margin: 0 auto 30px auto;
    box-shadow: 0 0 5px rgba(0,0,0,0.35);
}
  .navbtn:hover {
    transform: translateY(-1px);
  }
  .home:hover    { box-shadow: 0 0 10px #f7c9d9; }
  .poems:hover   { box-shadow: 0 0 10px #ffd8a8; }
  .stories:hover { box-shadow: 0 0 10px #fff9c4; }
  .talks:hover   { box-shadow: 0 0 10px #c8f7c5; }
  .visuals:hover { box-shadow: 0 0 10px #c9e7ff; }
  .about:hover   { box-shadow: 0 0 10px #e3c9ff; }
/* =========================================== */
/* End menu/nav buttons section */
/* =========================================== */