body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

.title {
  color: white;
  font-family: Impact;
  font-style: normal;
  font-weight: bold;
  font-size: 2vw;
  margin: 0;
}

.subtitle {
  color: white;
  font-family: Sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.25vw;
  margin: 0;
}

.listing {
  margin: 0;
}

.tooltip {
  position: relative;
  display: inline-block;
  color: red;
  border-bottom: 1px dotted red;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 480px;
  background-color: rgba(255, 0, 0, 0.75);
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 15px 0;
  position: absolute;
  z-index: 1;
  top: -75%;
  left: 175%;
  margin-left: -60px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 45%;
  left: -1%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent rgba(255, 0, 0, 0.66) transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}