* {
  box-sizing: border-box;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

#status {
  display: none;
  background: yellow;
  padding: 1rem;
  margin: 1rem 0 1rem 0;
}

#title {
  font-size: 2rem;
  margin: 0;
}

#content {
  position: relative;
  margin: auto;
  width: 100vw;
  max-width: 50rem;
  background: #ececec;
  padding: 2rem;
}

.sourceLink {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

#container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10rem 0 0 0;
  max-width: 50vw;
  background-color: #ed8b002b;
}

.dotContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #ed8b00;
  flex-direction: column;
  width: 1rem;
}

.label {
  transform: rotate(-45deg);
  white-space: nowrap;
  position: relative;
  top: -5rem;
  left: 3rem;
  text-align: left;
  width: 7rem;
  font-size: 0.5rem;
  text-transform: uppercase;
}

.stationDot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #ed8b00;
  margin: 0;
  position: relative;
  top: 0.3rem;
}

.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
