body {
  width: 100vw;
  height: 100vh;
  margin: 0px;
  padding: 0px;
  background: url('/assets/wool.jpg');
}

.wrapper {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  padding: 50px 20px 25px 20px;
  box-sizing: border-box;
}
.nav-bar {
  height: 90%;
  margin-right: 10px;
  transform: rotate(-2deg);
  border: 10px double rgb(123, 200, 8) ;
  padding: 16px;
  z-index: 5;
}
#nav {
  height: 100%;
  width: 140px;
  border: none;
}
#limiter {
  height: 100%;
  width: 100%;
  position: relative;
  max-width: 1700px;
  margin: auto;
}
#nav-outer {
  height: 90%;
  margin-top: 60px;
  margin-right: 10px;
  transform: rotate(-2deg);
  padding: 16px;
  z-index: 5;
}

#logo{
    position: absolute;
    top: 10px;
    left: 0px;
    width: 15%;
    z-index: 6;
    height: auto;
    transform: rotate(5deg);
    animation: bounce 5s infinite ease-in-out;
    box-shadow: 50px black ; 
}

.main-content {
  flex:auto;
  display: flex;
  flex-direction: column;
  z-index: 5;
}

#mainframe {
  background-color: paleturquoise;
  border: 5px blue dashed;
  height: 90%;
  width: 100%;
}

#cool-facts {
  height: 5%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

img {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

@keyframes bounce {
  0% {
    transform:rotate(5deg) scale(1)
  }
  50% {
    transform:rotate(9deg) scale(1.15)
  }
  100% {
    transform:rotate(5deg) scale(1)
  }
}
