/* @import url("https://fonts.googleapis.com/css?family=Noto+Sans+Mono"); */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;300;400;700&display=swap");

body {
  /* font-family: "Noto Sans Mono", monospace; */
  font-family: 'Roboto Mono', monospace;
  font-size: 0.9rem;
  margin: 0;
}

.tabs {
  font-size: 1rem;
  font-weight: 300;
  justify-content: center;
  text-align: center;
  /* background-color: whitesmoke; */
}

.tabs a {
  text-decoration: none;
  color: rgb(2, 2, 4);
}

.tab {
  position: relative;
  display: inline-block;
  padding: 5px;
}

.tab.selected::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid rgb(35, 35, 36);
}

.tab.active {
  text-decoration: underline;
}

@media only screen and (max-width: 420px) {
  body .tabs {
    font-family: 'Roboto Mono', monospace;
    font-size: 1rem;
    font-weight: 300;
    justify-content: center;
  }
}