
@font-face {
    font-family: 'Ostrich';
    src: url('ostrich-sans/ostrich-regular.ttf');
}

html {
    font-family: Arial, Helvetica, Ostrich, sans-serif;
    display: inline-block;
    text-align: center;
    background-color: whitesmoke;
}
  h1 {
    font-size: 1.8rem;
    color: white;
  }
  body {
    margin: 0;
  }

.topnav {
  overflow: hidden;
  background-color: #0A1128;
  /*background-image: url("Blueprint.jpeg");
  background-size: contain;*/
}
.container_horizontal {
  display: flex;
  flex-direction: row;
  padding: 0;
  margin: 0;
}
.text_card {
  background-color: ghostwhite;
  width: auto;
  height: 80px;
  padding: 0px 10px 0px 10px;
  border-radius: 5px;
  box-shadow: 2px 2px 12px 1px rgba(140,140,140,.5);
  font-family: 'Ostrich', sans-serif;
  font-size: 2rem;
  margin: 12.5px 2.5px 5px 12.5px ;
  position: relative;
  top: -10%;

}
.container_gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Se podría usar: flex-flow: row wrap;*/
  max-width: 200px;     
  padding: 0;
  margin: 0;
}
.card-gauge {
  width: 175px;
  height: 175px;
  background-color: ghostwhite;
  border-radius: 5px;
  box-shadow: 2px 2px 12px 1px rgba(140,140,140,.5);
  margin: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.card-gauge-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  font-weight: lighter;
  text-indent: 10px;
  position: relative;
  top: 10%;
  align-self: flex-start;
}
.card-gauge-path {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: stroke-dasharray 0.5s linear;
}
.card-gauge-path-value {
  font-family: 'Ostrich', sans-serif;
  font-size: 2rem;
  position: absolute;
  top: 35%;
}
.card-gauge-path-range {
  position: relative;
  top: -25%;
  width: calc(100% - 85px);
  display: flex;
  flex-direction: row;
}
.min_range {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
}
.space_range {
  flex-grow: 2
}
.max_range {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
}






