@font-face {
  font-family: 'ShadowsIntoLight';
  src: url('../fonts/ShadowsIntoLight.woff2') format('woff2'), url('../fonts/ShadowsIntoLight.woff') format('woff');
  font-weight: normal;
  font-style: normal; 
  font-display: swap;
} 

.notebook-container {
  position: relative;
  background-color: rgba(255, 255, 255, 0.4);
  background-image: url("../images/paper-texture.png");
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px; 
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.notebook-container::before {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 60px;
  background-color: rgba(255, 0, 0, 0.4);
}

.notebook-container::after {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 63px;
  background-color: rgba(255, 0, 0, 0.4);
}

.notebook-content-top {
  padding-top: 40px;
  background-color: rgba(255, 255, 255, 0.4);
}

.notebook-content-bottom {
  padding-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.4);
}

.notebook-lines {
  height: 100%;
  background-image: repeating-linear-gradient(rgba(255, 255, 255, 0.4) 0px, 
  rgba(255, 255, 255, 0.4) 25px, 
  rgba(0, 0, 0, 0.2) 26px);
}

.notebook-content {
  font-family: 'ShadowsIntoLight', sans-serif !important;
  color: #1A237E !important; 
  padding-top: 6px;
  padding-left: 90px;
  padding-right: 40px;
  line-height: 26px;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 1px;
  word-spacing: 4px;
}