:root {
  --painting-height: 200px;
  --left-indent: 5vw;
  --painting-indent: 20vw;
  --painting-margin-top:2vh;
  
}

*{
  margin: 0;
  /* cursor: grab; */
}

::-webkit-scrollbar{
  height: .25em;
  width: 1em;
}

::-webkit-scrollbar-thumb{
  border-radius: 0px;
  background: magenta;
  height: 2em;
  width: 1em;
  opacity: 0;
  border: #000 solid 1px;
}

::-webkit-scrollbar-thumb:hover{
  border-radius: 0px;
  background: magenta;
  height: .25em;
  opacity: 100;
}

body{
  font-size: 16px;
  cursor: url(images/cursor-hand.png), auto !important;
}

h1{
  margin-left: var(--left-indent);
}

p{
  padding: .5em;
  padding-left: 0;
  margin-left: var(--left-indent);
}

.regular{
  font-size: 2em;
}


.magenta{
  color: magenta;
}

iframe{
  width: 80vw;
  height: 80vh;
  display: block;
}

main{
  margin: auto;
  width: 100%;
  height: 100%;
}

a{
  cursor: url(images/cursor-hand.png), auto !important;
  color: blue; 
}

a:hover{
  color: greenyellow;
}

/* nav */
nav{
  position: fixed;
  margin-top: 0;
  width: 100%;
  height: fit-content;
  z-index: 2000;
  background-color: white;
  display: flex;
  flex-direction: horizontal;
  border-bottom: 1px solid #000;
}

nav p{
  padding-left: 0;
}

/* painting */
.painting-wrapper--text-box{
  position: fixed;
  margin-right: 0;
  margin-top:0;
  width: 100%;
  height: 0;
  justify-content: flex-end;
  /* background-color: white; */
  background-image: url(images/canvas.png);
  mix-blend-mode: hard-light;
  z-index: 1000;
  /* If you want to implement it in very old browser-versions */
  -webkit-user-select: none; /* Chrome/Safari */ 
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+ */

  /* The rule below is not implemented in browsers yet */
  -o-user-select: none;

  /* The rule below is implemented in most browsers by now */
  user-select: none;
}

.painting-wrapper--text-box img{
  display: block;
  float: right;
  margin-top: 20vh;
  height: 75vh;
  width: auto;
}


/* wrapper */
.essay-wrapper{
  width: 100%;
  height: fit-content;
  display: flex;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  overflow-x: hidden;
}

.essay-wrapper:first-child{
  margin-top: var(--painting-margin-top);
}


/* magenta box */
.white-box{
  width: 100%;
  /* background-color: white; */
  height: fit-content;
  display: block;
  background-color: magenta;
  mix-blend-mode: hard-light;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.white-box p{
  padding-left: var(--left-indent);
  width: 40vw;
}

.white-box img{
  width: 100vw;
}

/* big box */
.big-box{
  font-family: Arial, sans-serif;
  font-weight: bold;
  width: 100%;
  /* background-color: white; */
  height: fit-content;
  /* display: flex;
  flex-direction: row;
  overflow-x: scroll; */
  background-color: magenta;
  padding-top: .5em;
  padding-bottom: 1em;
}

.big-box p{
  font-size: 4em;
  font-style: normal;
  line-height: 1em;
  padding-bottom: 20vh;
}

.big-box .caption{
  font-size: 1em;
  font-family: serif;
  font-weight: normal;
  width: 60vw;
  padding-left: var(--left-indent);
}

.big-box .smaller-big{
  font-size: 2em;
  font-family: serif;
  font-weight: normal;
  width: 60vw;
  padding-left: var(--left-indent);
}

/* image box */
.image-box{
  height: fit-content;
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
} 

.image-box img{
  display: block;
  width: auto;
  height: 80vh;
  padding: 0 !important;
  margin: 0 !important;
}

.image-box--tall img{
  padding: 0 !important;
  margin: 0 !important;
}
