@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
  margin: 0px;
  background-color: #2a3033;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 400;
}

a {
  color: #1f98ff;
}

#logo img {
  height: 1em;
  padding-right: 0.5em;
}

#main {
  margin: 20px;
  font-size: 1.2em;
}

header {
  padding: 0px 8px;
  background-color: #1b1f23;
  display: flex;
  justify-content: space-between;
}

#links {
  list-style-type: none;
  padding-left: 0px;
  padding-top: 0.6em;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}

#links li {
  padding: 0 10px;
  font-size: 20px;
}

li a {
  color: #ffffff;
  text-decoration-line: none;
}

#current::after {
  display: block;
  content: "";
  width: 100%;
  border: 0.1em solid #fff;
  border-radius: 0.1em;
}

li:not([id="current"])::after {
  display: block;
  content: "";
  margin: auto;
  width: 0%;
  border: 0.1em solid #fff0;
  border-radius: 0.1em;
  transition: all 0.2s ease-out;
}

li:not([id="current"]):hover::after {
  width: 100%;
  border-color: #ffff;
}