
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
    background: #e9ecef;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #dee2e6;
}

::selection {
    background-color: rgba(23, 162, 255, 0.549);
    color: inherit;
}

body {
  margin: 0;
  height: 100vh;
  font-family: "Times New Roman", serif;
  overflow: hidden;
  display: flex;
}

.left-page {
  width: 48%;            
  background: #001eff;    
  color: white;
  position: relative;
}


.left-page {
  box-shadow: inset -25px 0px 40px rgba(0, 0, 0, 0.167);
}

.right-page {
  box-shadow: inset 25px 0px 40px rgba(0, 0, 0, 0.185);
}

img {
    height:200px;
    width:auto;
    border-radius: 4px;
    box-shadow: rgba(255, 255, 255, 0.666) 0px 5px 15px;
}

.spine {
  width: 3%;
  background: #2088ffc3;
  background: linear-gradient(
      90deg,
      rgba(0,0,0,0.15),
      rgba(0,0,0,0) 40%,
      rgba(255,255,255,0.18)
  ), #2088ffc3;
  background-blend-mode: overlay;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spine-writing {
    color: #fdfdf8;
    writing-mode: vertical-rl;
    text-orientation: mixed;  
    transform: rotate(180deg); /* starts down to up // opposite */
}

.right-page {
  width: 50%;           
  background: #fdfdf8;
  position: relative;
  overflow: hidden;
}

.bio {
  position: absolute;
  bottom: 6vh;
  left: 4vw;
  width: 70%;
  font-size: 15px;
  line-height: 1.25;
}

.bigword {
  position: absolute;
  font-style: italic;
  color: rgba(50, 70, 255);
  white-space: nowrap;
  letter-spacing: -0.02em;
  transform: scale(3);
  transition: opacity 4s ease-in, transform 2.1s ease-in;
}

.bigword.tiny {
  transform: scale(1);
}

.living {
  top: 18vh;
  right: 42%;
  font-size: 10vw;
  opacity: .30;
}

.relived {
  top: 28vh;
  right: 18%;
  font-size: 12vw;
  opacity: .90;
}

.online {
  top: 42vh;
  right: 20%;
  font-size: 10vw;
  opacity: 0.10;
}

.bleed {
  position: absolute;
  top: 5vh;
  right: 2%;
  width: 95%;
  font-size: 12px;
  opacity: 0.06;
  transform: scaleX(-1);
  line-height: 1.4;
  color: #8ACE00;
  pointer-events: none;
  column-count: 3;
  font-size: 10px;
  opacity: 0.07;
}

.arrow {
  position: absolute;
  bottom: 4vh;
  right: 3vw;
  font-size: 40px;
  color: #0033ff;
  text-decoration: none;
}

#mobile-block {
  display: none;
  position: fixed;
  inset: 0;
  background: #0033ff;
  color: #ffffff;
  font-family: "Times New Roman", serif;
  font-size: 20px;
  padding: 40px;
  line-height: 1.4;
  z-index: 999999;
}

@media (max-width: 900px) {
  #mobile-block {
    display: flex;
    align-items: center;
    justify-content:center;
    text-align: center; 
    }

  body > *:not(#mobile-block) { 
    display: none !important; 
    }
}
