html{
  /* background-color: black; */
}

/* body{
  opacity: 0;
  transition: 1s;
} */
body{
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#logo_box{
  width: 5vw;
  height: 100vh;
  min-width: 40px;
  float: left;
}
#logo{
  width: 5vw;
  height: 100vh;
  min-width: 40px;
  background-color: lightgray;
  background-color: rgb(252, 252, 252);
  /* background-color: black; */
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  font-family: Avenir;
  font-size: 20px;

  opacity: .3;
  transition: .3s;
}
#logo:hover{
  background-color: rgb(253, 253, 253);
  opacity: 1;
}

#caption_box{
  opacity: .85;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgb(129, 228, 255);
  background-color: black;
  color: white;
  text-align: center;
  /* font-family: Avenir; */
  /* display: none; */
  transition: .6s;
}

#work_title{
  width: 60vw;
  margin: auto;
  padding-top: 10vh;
  /* text-align: left; */
}
#caption{
  width: 55vw;
  margin: auto;
  padding-top: 10vh;
  text-align: left;
  /* font-family: Avenir; */
}
p{
  margin-bottom: 5vh;
}

.display_area{
  width: auto;
  height: 100vh;
  min-width: calc(100vw - 40px)
  padding-left: 40px;
}
#canvas{
  width: 100%;
  height: 100vh;
  margin: auto;
}
.x_over{
  overflow-x: auto;
  white-space: nowrap;
}
.y_over{
  overflow-y: auto;
}


@media screen and (max-width: 768px) {
  #caption{
    padding-top: 6vh;
    width: 72vw;
  }
}
