body {
  background-color: black;
  color: white;
}

svg{
  touch-action: none;
}

#box_wrapper{
  display: flex;
  flex-direction: column;
  /* horizontal centering bc flex*/
  justify-content: center;

  /*vertical centering bc flex*/
  align-items: center;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
}

#graph_container{
  width: 98%;
  height: 100vh;
  max-width: 600px;
  max-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#tutorial{
  margin-bottom: 10px;
  width: 100%;
}

#graph{
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#graph_selector{
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction : row;
  justify-content: space-between;
  gap: 15px;
}

#graph_info{
  min-width: 0;
}

#graph_description{
  font-size: 0.9em;
}

#reset{
  font-size: 1.0em;
  margin-left: auto;
  border-radius: 1px;
  border: 0px;
  background-color: red;
}

button{
  height: 0;
  flex-shrink: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid black;
  background: black;
  border-left: none;
  cursor: pointer;
  outline: none;
}

#previous{
  border-right-color: red;
}
#next{
  border-left: 20px solid;
  border-right: none;
  border-left-color: red;
}

span{
  font-size: 18px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}

#gif_tooltip_container {
  position: absolute;
  display: none;
  z-index: -1000;
}
