@font-face {
  font-family: 'diatype-medium';
  src: url(fonts/abc_diatype_medium.otf);
}
@font-face {
  font-family: 'diatype-regular';
  src: url(fonts/abc_diatype_regular.otf);
}
@font-face {
  font-family: 'diatype-medium-italic';
  src: url(fonts/ABCDiatype-MediumItalic.ttf);
}
@font-face {
  font-family: 'diatype-regular-italic';
  src: url(fonts/ABCDiatype-RegularItalic.ttf);
}
@font-face {
  font-family: 'cancellaresca';
  src: url(fonts/Cancellaresca-Script.ttf)
}
@font-face {
  font-family: 'clifton';
  src: url(fonts/Clifton-Italic.otf)
}
@font-face {
  font-family: 'mabry-mono-regular';
  src: url(fonts/MabryMonoPro-Regular.ttf)
}
@font-face {
  font-family: 'mabry-mono-italic';
  src: url(fonts/MabryMonoPro-Italic.ttf)
}

html, body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  width: 100vw;
  height: 100vh;
  font-family: 'diatype-regular', sans-serif;
}

/** essay and project title **/
h1 {
  font-family: 'clifton';
  font-weight: 300;
  line-height: 1.2;
}

h2 {
  font-family: 'diatype-regular', sans-serif;
  font-size: 0.85rem;
}

/** image caption **/
h3 {
  font-family: 'maybry-mono-regular', monospace;
  font-weight: 400;
  font-size: 0.7em;
}

b, strong, em {
  font-family: 'diatype-medium', sans-serif;
  font-weight: normal;
  font-style: normal;
}

i {
  font-family: 'diatype-regular-italic', sans-serif;
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

#content-layer {
  width: 100vw;
  height: 100vh;
  display: flex;
  background-image: linear-gradient(to right, white , rgb(155, 173, 203));
}

#title-section {
  width: 325px;
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  position: relative;
  border-right: .2px solid;
}

#title-container {
  text-align: center;
}
#title {
  font-family: 'cancellaresca';
  font-size: 5rem;
  line-height: 0.7;
}

#back-btn {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px;
  font-size: 1.5rem;
}

#nav {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
}
#nav svg {
  width: 16px;
}

.btn {
  cursor: pointer;
  position: relative;
}

.btn:hover {
  top: 2px;
}

.btn-label {
  display: none;
  font-size: 1rem;
}

#content-section {
  display: flex;
  max-width: calc(100vw - 325px);
  overflow-x: scroll;
}

img {
  width: 100%;
}

#index-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('staticassets/Background_shape.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.index-item {
  cursor: pointer;
  width: fit-content;
  position: absolute;
  top: 50vh;
  left: 50vw;
  padding: 10px;
  font-family: 'clifton', cursive, serif;
  font-size: 1.3rem;
}

.index-item:hover {
  color: grey;
}

.column {
  background-color: black;
  flex: 1 1 0px;
  padding: 10px 20px;
  overflow-y: scroll;
  height: 100%;
  max-width: 50%;
  min-width: 450px;
  border-right: .2px solid;
}


.orbit {
  border: 1px dashed grey;
  position: absolute;
  border-radius: 50%;
}

#orbit-container, #star-container {
  width: 100vw;
  height: 100vh;
  position: fixed;
}

#orbit-1 {
  width: 30vw;
  height: 30vh;
  top: 35vh;
  left: 35vw;
}

#orbit-2 {
  width: 50vw;
  height: 50vh;
  top: 25vh;
  left: 25vw;
}

#orbit-3 {
  width: 70vw;
  height: 70vh;
  top: 15vh;
  left: 15vw;
}

#orbit-4 {
  width: 90vw;
  height: 90vh;
  top: 5vh;
  left: 5vw;
}

#orbit-5 {
  width: 110vw;
  height: 110vh;
  top:  -5vh;
  left: -5vw;
}

.star {
  position: absolute;
}

#star-1 {
  top: 10vh;
  left: 80vw;
  width: 30px;
}

#star-2 {
  top: 80vh;
  left: 80vw;
  width: 200px;
}

#star-3 {
  top: 80vh;
  left: 20vw;
  width: 50px;
}

#star-4 {
  top: 20vh;
  left: 40vw;
  width: 50px;
}

#star-5 {
  bottom: 20vh;
  right: 5vw;
  width: 20px;
}

#star-6 {
  top: 10vh;
  left: 5vw;
  width: 200px;
}

#star-7 {
  bottom: 20vh;
  left: 5vw;
  width: 50px;
}

#star-8 {
  bottom: 10vh;
  left: 52vw;
  width: 50px;
}

a {
  color: inherit;
}

a:hover {
  color: white;
}