/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
body {
    background-color: white;
}
#navigationMenu {
  background: linear-gradient(100deg, rgba(20, 20, 20, 0.8) 50%, rgba(27, 27, 27, 0.9) 100% );
  border-right: 1px solid #474747;
  border-left: 1px solid #474747;
  border-bottom: 1px solid #474747;
  border-bottom-left-radius: 60px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  display: block;
  height: 763px;
  min-width: 122px;
  max-width: 250px;
  padding: 8px 11px 14px 11px;
  overflow: auto;
}
#navigationMenuRight {
  background: linear-gradient(100deg, rgba(20, 20, 20, 0.8) 50%, rgba(27, 27, 27, 0.9) 100% );
  border-right: 1px solid #474747;
  border-left: 1px solid #474747;
  border-bottom: 1px solid #474747;
  border-bottom-right-radius: 60px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  display: block;
  height: 763px;
  min-width: 122px;
  max-width: 250px;
  padding: 8px 11px 14px 11px;
  overflow: auto;
}
#wrapper {
  margin: 0 auto;
    margin-top: 0px;
  width: 955px;
  height: 1070px;
  background-color: maroon;
  background-image: linear-gradient(#bf0f0f, black);
  border-image: url('https://www.fg-a.com/print-borders/red-black-abstract-border.jpg') 30 round;
  border-style: solid;
  border-width: 32px;
  margin-top: -20px;
}
#sideimage {
  background-image: url('https://static.tumblr.com/axmsktq/CtHqc1qbg/contestant441.gif');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 19%;
  height: 95%;
  display: inline-block;
  float: left;
  margin-left: 1%;
  margin-top: .5%;
}
#sideimage:hover {
  animation: shake 0.5s;
    animation-iteration-count: 1;
  animation-iteration-count: infinite;
  cursor: pointer;
}