body {
  background-image: url("img/gingham1.png");
  background-color: #D5CBFF;
  color: #938072;
  font-family: 'Arial', sans-serif;
  position: relative;
}
a {
  color: #998cca;
}
.container {
  flex-flow: column wrap;
  flex-wrap: wrap;
  align-content: stretch;
  border-radius: 25px;
  border: 2px solid #FDCFCB;
  background: #fff;
  background-image: url("img/polka3.png");
  padding: 10px;
  width: 600px;
  top: 70px;
  position: relative;
  word-wrap: normal;
}
.fancyBorder {
    /* left side */
    background: url(leftimg.png) top left repeat-y;
}
.fbInner .fbContent {
    position: relative;
    z-index: 2;
}
.fbInner {
    padding: 15px; /* this should probably be set at least to the width of your border image */
    position: relative;
    /* right side */
    background:url(rightimage.png) top right repeat-y;
}

.fbInner div {
    position: absolute;
    z-index: 0;
}
.fbInner .top {
    top: 0;
    left: 0;
    height: 15px;
    width: 100%;
    background: url(topimage.png) top left repeat-x;
}
.fbInner .bottom {
    height: 15px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: url(bottomimage.png) bottom left repeat-x;
}
.fbInner .corner {
    z-index: 1;
    width: 15px;
    height: 15px;
}

.fbInner .tl {
    top: 0;
    left: 0;
    background: url(topleftimage.png) top left no-repeat;
}
.fbInner .tr {
    top: 0;
    right: 0;
    background: url(toprightimage.png) top right no-repeat
}
.fbInner .bl {
    bottom: 0;
    left: 0;
    background: url(bottomleftimage.png) bottom left no-repeat;
}
.fbInner .br {
    bottom: 0;
    right: 0;
    background: url(bottomrightimage.png) bottom right no-repeat;
}
#lace {
    background-image: url('img/dotlacepink.png');
    background-repeat: repeat-x;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    position: fixed;
    z-index: 1;
    opacity: 1;
}

.sidenav {
  height: 100%;
  width: 180px; 
  position: fixed;
  z-index: 1; 
  top: 0; 
  left: 0;
  background-image: url("polka3.png");
  background-color: #fff;
  overflow-x: hidden;
  padding-top: 20px;
}
.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
}
.sidenav a:hover {
  color: #f1f1f1;
}
.main {
  margin-left: 160px; /* Same as the width of the sidebar */
  padding: 0px 10px;
}
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
} 