/* 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 {
  color: black;
  font-family: 'jersey_15regular';
  background-image: url('background2.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  image-rendering: pixelated;
  overflow: clip;
}

@font-face {
    font-family: "jersey_15regular";
    src: url('font/jersey15-regular-webfont.woff2') format('woff2'),
         url('font/jersey15-regular-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;


}

.layout {
  display: flex;
  justify-content: center;
  gap: 2vw;
  margin: 15vh 5vw 5vh 5vw;
}

.lace-box3 {
  display: block;
  border: 64px solid transparent;
  border-image-source: url('vineydivborderbck.png');
  border-image-slice: 32 fill;
  border-image-repeat: round;
  image-rendering: pixelated;
  border-radius: inherit;
  position: relative;
  z-index: 0;
  padding: 0;
  
  transform-style: preserve-3d;
  perspective: 1500px;
  overflow: visible;
  
  box-sizing: border-box;
}

.lace-box3 .js-tilt-glare {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1.1);
  pointer-events: none;
}

.lace-box3 .lace-content {
  position: relative;
  z-index: 1;
  height: 60vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1vh;
  word-wrap: break-word;
  scrollbar-color: #013d02 #469c2c;
  scrollbar-width: thin;
  color: #b393d3;
  text-shadow: 
    0px 0px 0px #480d35, 
    1px 2px 2px #480d35,
    -2px 0px 1px rgba(16, 16, 16, 0.5), 
    1px 5px 5px rgba(16, 16, 16, 0.4),
    1px 10px 15px rgba(16, 16, 16, 0.3);
}

#sidebar {
  border-image-source: url('vineydivborderbrick2.png');
  width: 200px

}
#sidebar-content {
  min-height: 60vh;
  max-height: 60vh;
}

.lace-box3:not(#sidebar) {
  max-width: 80vw;
}