@media only screen and (min-width : 320px) {
  html {
    font-size: 28px;
  }
}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px) {
  html {
    font-size: 26px;
  }
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
  html {
    font-size: 24px;
  }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
  html {
    font-size: 16px;
  }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
  html {
    font-size: 16px;
  }
}


.line {
  fill: none;
  stroke: black;
  stroke-width: 3;
}

.your-line {
  stroke: rgba(241, 196, 15,1.0);
  stroke-width: 3;
  stroke-dasharray: 5 5;
  padding: 0.1rem 0.25rem;
  background-color: rgba(241, 196, 15,1.0);
}

.container {
  text-align: center;
}

p {
  text-align: left;
}

h1, h3, h6 {
  padding: 1rem;
  margin-bottom: 0;
  margin-top: 0;
}


body {
  padding-top: 5em;
  padding-bottom: 5em;
/*  font-size: 28px;*/
}

.axis.hiddentext text {
  visibility: hidden;
}

.tempYAxis {
  font-size: 0.8em;
}

.monthXAxis.hiddentext text {
  visibility: hidden;
}

.month-axis {
  visibility: hidden;
  font-size: 0.8em;
}

.training {
  fill: steelblue;
  background-color: steelblue;
  color: white;
  padding: 0.1rem 0.25rem;
}

.testing {
  fill: teal;
  background-color: teal;
  color: white;
  padding: 0.1rem 0.25rem;
}

.axis {
  stroke-opacity: 0.4;
}

.residual-original, .residual-ge-test {
  stroke: rgba(192, 57, 43, 1.0);
  stroke-opacity: 1;
  stroke-width: 0.5;
  color: white;
  background-color: rgba(192, 57, 43, 1);
  padding: 0.1rem 0.25rem;
}

.datapoint.hide {
  visibility: hidden;
}

.datapoint.show {
  visibility: visible;
}

.logo {
  max-height: 2em; 
  width: auto;
}

/* https://bl.ocks.org/mbostock/1087001 */
.scatterplot-tooltip {
  position: absolute;
  text-align: center;
  padding: 8px;
  margin-top: -30px;
  background-color: rgba(255, 255, 255, 0.9);
  pointer-events: none;
}
