
.info {
  /* make a blue cirlce like a info button*/
  /* Create a circular shape by setting the border radius to 50% */
  border-radius: 50%;

  /* Set the width and height of the element to 30 pixels */
  width: 30px;
  height: 30px;

  /* Set the background color to a shade of blue (#2196F3) */
  background-color: #2196F3;

  /* Display the element as an inline block */
  display: inline-block;

  /* Center the text within the element */
  text-align: center;

  /* Set the text color to white */
  color: white;

  /* Set the font size to 14 pixels */
  font-size: 14px;

  /* Center the text vertically within the element using the line-height */
  line-height: 30px;

  /* Add 5 pixels of margin to the left and right sides of the element */
  margin-left: 5px;
  margin-right: 5px;


}

.hide {
  visibility: hidden;
}

.info:hover+.hide {
  visibility: visible;
  color: red;
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 10px;
  border-radius: 5px;
  background-color: white;
  margin-left: 5%;
  margin-right: 5%;

}

.grid-container>div {
  text-align: center;
  padding: 20px;
}

canvas {
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background-color: white;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
}

img {
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

body {
  background-color: #F0FFF0;
}

.headerText {
  text-align: center;
  font-family: "Courier New", Courier, monospace;
  font-size: 40px;
  font-weight: normal;
}

.subheaderText {
  text-align: center;
  font-size: 20px;
}

.containerFluid {
  margin: 5%;
  border-radius: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

.data {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

#animNavBtns {
  margin-bottom: 10px;
  margin-inline: auto;
}

#animNavBtns button {
  padding: 2px !important;
  width: 65px;
  height: 38px;
  margin-inline: 2px;
}

#animNavBtns2 {
  margin-bottom: 10px;
  margin-inline: auto;
}

#animNavBtns2 button {
  padding: 2px !important;
  width: 65px;
  height: 38px;
  margin-inline: 2px;
  background-color: orange;
  border-color: orange;
}

