@import url("https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap");

* {
  position: relative;
}

body {
  margin: 0;
  background: #dedede;
  font-family: "PT Sans Narrow", sans-serif;
  font-weight: 700;
  color: #1d1d1d;
}

.main {
  height: 20vh;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 100px 0 100px;
  background: #1d1d1d;
}

.main div {
  color: white;
  background: #333;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6vw;
  outline: 1px solid white;
}

.tooltips {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: space-evenly;
  padding: 0 100px 0 100px;
  background: #salmon;
}

.tooltip div {
  padding: 10px;
  background: pink;
}

.minX {
  transform: translateX(-50%);
}

.maxX {
  transform: translateX(50%);
}

.output {
  padding-left: 100px;
}

.tooltip,
.output {
  font-size: 28px;
}
