body{
  letter-spacing: .08rem;
  font-family: "futura-pt-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#logo {
  z-index: 6;
  position: absolute;
  left: 30px;
  font-size: 25pt;
  line-height: 27pt;
  cursor: default;
  top: -9px;
}

ol{
  z-index: 6;
  position: absolute;
  top: 10px;
  right: 30px;
  display: block;
  cursor: default;
  font-size: 16.5pt;
}

li{
  display: inline;
  padding-left: 15px;
}

#plus-minus-div{
  bottom: 30px;
  position: absolute;
  left: 30px;
  z-index: 3;
  gap: 10px;
}

.icon {
  width: 40px;
  height: 40px;
  position: relative;
  margin-top: 10px;
  cursor: default;
}

.circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid black;
  position: absolute;
  top: 0;
  left: 0;
}

.horizontal-line {
  height: 2px;
  width: 70%;
  background-color: black;
  position: absolute;
  top: 50%;
  left: 19%;
}

.vertical-line {
  height: 70%;
  width: 2px;
  background-color: black;
  position: absolute;
  top: 20%;
  left: 53%;
}

#cy {
  width : 100%;
  min-height: 600px; 
  height: 100vh;
  display : block;
  background-color : white;
  /* border: solid 3px black; */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 1;
}

#background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 15px;
  cursor: pointer;
}

#dot-container{
  z-index: 3;
  position: absolute;
  right: 30px;
  bottom: 30px;
}

#sidebar {
  z-index: 6;
  top: 0px;
  position: fixed;
  right: 0; 
  width: 250px; 
  height: 100%;
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%); /* Initially move the sidebar offscreen to the right */
  background-color: rgb(222, 222, 222);
  font-size: 15pt;
}

#sidebar.open {
  transform: translateX(0); /* Move the sidebar back to its original position */
}

#sidebar-contents-box{
  margin-left: 25px;
}

#close-sidebar {
  position: absolute;
  appearance: none;
  border: none;
  background-color: rgb(222, 222, 222);
  right: 10px;
  top: 5px;
  font-size: 45px;
  font-weight: light;
}

#popout-div{
  z-index: 3;
  position: fixed;
  margin-top: 100px;
  background-color: rgb(222, 222, 222);
  min-width: 300px;
}


#close-contents {
  position: absolute;
  appearance: none;
  border: none;
  background-color: rgb(222, 222, 222);
  right: 15px;
  top: 5px;
  font-size: 45px;
  font-weight: lighter;
}
.download-button{
  margin-left: 25px;
}

@keyframes rotate {
  from {
    transform: rotate(30deg);
  }
  to {
    transform: rotate(0deg);
  }
}

#titles{
  margin-left: 5%;
}

#contents{
  margin-left: 5%;
  width: 91%;
}

#links{
  margin-left: 5%;
  color: blue;
  width: 91%;
}