body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5vh;
  white-space: inline; 
  position: absolute;
  width: 100%;
  background-color: white;
  padding: 2vh;
}


rect {
  fill: transparent;
  shape-rendering: crispEdges;
}

h1{
    padding-top: 0vh;
    font-family: 'Merriweather', serif;
    width: 100%;
    font-size: 5vh;
    margin-top: 0.3em;
    margin-bottom: 0.2em;
    margin-left: 0.67em;
    margin-right: 0.67em;
    color: black;
}

.axis path,
.axis line {
  fill: none;
  stroke: rgba(0, 0, 0, 0.1);
  shape-rendering: crispEdges;
}

.axisLine {
  fill: none;
  shape-rendering: crispEdges;
  stroke: rgba(0, 0, 0, 0.5);
  stroke-width: 2px;
}

.dot {
  fill-opacity: .5;
}

.d3-tip {
  line-height: 1.3vh;
  font-weight: bold;
  padding: 1vh;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border-radius: 0.2vh;
  font-size: 1.2vh;
}

/* Creates a small triangle extender for the tooltip */
.d3-tip:after {
  box-sizing: border-box;
  display: inline;
  font-size: 10px;
  width: 100%;
  line-height: 1;
  color: rgba(0, 0, 0, 0.8);
  content: "\25BC";
  position: absolute;
  text-align: center;
}

/* Style northward tooltips differently */
.d3-tip.n:after {
  margin: -1px 0 0 0;
  top: 100%;
  left: 0;
}

#boton {
    width: 10em;  height: 4em;
    font-size: 1vh;
    background-color: steelblue;
    display: inline-block;
    padding: 1vh 1vh;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    font-style: bold;
}

#boton:hover {background-color: #F69245}

#boton:active {
  background-color: #F69245;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}
}