body {
  background-color: #f0f0f0; /* Notebook table background */
  justify-content: center;
  padding: 40px 20px;
  font-family: "Shadows Into Light", cursive;
}

.paper {
    width: 100%;
    max-width: 800px;
    min-height: 600px;
    position: relative;
    padding: 40px 40px 40px 80px;
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.1); */

    background-image: 
    linear-gradient(#90b1e4 1px, transparent 1px);
    background-size: 100% 2rem;
}

.paper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 60px; 
  height: 100%;
  width: 2px;
  background-color: #d43232;
}

.paper h1, .paper p, .paper h2, .paper nav {
  line-height: 2rem; /* Must match the background-size height exactly */
  margin: 0 0 2rem 0;
  color: #222;
}

.sticky-note {
    background-color: #fffb96;
    padding: 20px;
    margin: 30px 20px 40px 0; 
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15); 
    position: relative;
    transform: rotate(-.5deg); 
}

#projects {
    background-color: rgb(127, 219, 255);
}

#facts {
  background-color:#B3EFBD;
}

.lyrics {
    color:darkred;
    display: flex;
}

.tape-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  background-color: #D3BDFF;
  padding: 10px 18px;
  width: fit-content;
  margin: 20px auto 40px auto;
  transform: rotate(-0.8deg);
  box-shadow: 3px 3px 12px rgba(0,0,0,0.15);
  position: relative;
}

.tape-nav::before, 
.tape-nav::after {
  content: "";
  position: absolute;
  width: 45px;
  height: 14px;
  background-color: rgba(255, 255, 255, .6);
  top: -7px;
}


.tape-nav::before {
  left: 12px;
  transform: rotate(-12deg);
}

.tape-nav::after {
  right: 12px;
  transform: rotate(10deg);
}

a {
  color:darkslategray;
}