


body {
  background-color: white;
  font-family: 'Rufina', serif;
}

#list {
  width: 40%;
  margin: 3% auto 0 auto;
  padding: 0;
}


li {
  display: block;
  width: 100%;
  font-size: calc(.8vw + .8vh + 1.8vmin);
  cursor: pointer;
  color: black;
  font-family: 'Rufina', serif;
  font-weight: 100;
}

li:nth-child(odd) {
    text-align: left;
}
li:nth-child(even) {
    text-align: right;
}

li:hover, li.visited {
  color: #6B7276;
}

#canvas {
  position: absolute;
  background-color: white;
  top:0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  display: none;
  text-align: center;
  cursor: url('../icon/close.png'), pointer;
}

#canvas > img {
  max-height: 90%;
  max-width: 90%;
  padding: 1% 0;

}

#canvas > #caption p {
  font-size: calc(.4vw + .4vh + .4vmin);
  margin: 0;
}

#canvas > #caption p span {
  color: #635E5E;
}

#circle {
  position: fixed;
  background-color: #000;
  cursor: pointer;
  z-index: 8;
  border-radius: 50%;
	width: 20px;
	height: 20px;
  bottom: 20px;
  right: 20px;
}

#circle:hover {
  background-color: #6B7276;
}

#info {
  display: none;
  position: absolute;
  top:0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  cursor: url('../icon/close.png'), pointer;
}

#info ul {
  width: 40%;
  height: 20%;
  margin: 22% auto 0 auto;
}

#info ul li {
  cursor: url('../icon/close.png'), default;
}

#info ul li:hover, #info ul li a {
  color: black;
  text-decoration: none;

}

#info ul li a:hover {
  color: #6B7276;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 1150px) and (min-width: 1051px) and (min-aspect-ratio: 2/3) {
  #list {
  	width: 50%;
  }
}

@media (max-width: 1050px) and (min-width: 901px) {
  #list {
  	width: 50%;
  }
}

@media (max-width: 900px) {
  #list, #info ul {
  	width: 60%;
  }

  #canvas > #caption p {
    font-size: 11px;
  }
}
