@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Fira Sans', sans-serif;
    margin: 0;
    background: #FFF;
}

body *::selection {
    background: #6AF8;
}

.flex {
    display: flex;
}

.navbar {
    width: 100vw;
    background: #6AF;
    height: 50px;
}

.margin-16px {
    margin: 16px;
}

.repel-left {
    margin-left: auto;
}

.navbar-item {
    display: flex;
    align-items: center;
    padding: 0 10px;
    background: #40F4;
    height: 100%;
}

.unformat-a {
    color: #000;
    text-decoration: none;
}

h1 {
    margin: 16px;
    border-bottom: solid 4px #6AF8;
    width: max-content;
    height: min-content;
    align-self: flex-end;
}

h2 {
    margin: 0;
}

.container {
    margin: 16px;
    background: #6AF2;
    padding: 16px;
    border-radius: 16px;
}

.outdated {
    text-decoration: underline wavy #888;
    cursor: help;
}

li {
    width: max-content;
}

input {
    font-family: inherit;
    outline: none;
    border: solid 2px #444;
    border-radius: 7px;
    padding: 14px;
    font-size: 20px;
    transition-duration: 0.2s;
    background: #FFF;
}

input:focus {
    border-color: #6AF;
}

button {
    cursor: pointer;
    min-width: 15%;
    background: #FFF;
    font-family: inherit;
    outline: none;
    border: solid 2px #6AF;
    border-radius: 7px;
    padding: 14px;
    font-size: 20px;
    transition-duration: 0.2s;
}

.dropdown-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFF;
  box-shadow: 0 4px 8px #0002;
  z-index: 1;
  border-radius: 7px;
  right: 0;
}

.dropdown-link:last-child {
    border-radius: 0 0 7px 7px;
}

.dropdown-link {
  color: #333;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  transition-duration: 0.2s;
  border: solid 2px #0002;
}

.dropdown-link:hover {
    border: solid 2px #6AF;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropdown-button {
        border-radius: 7px 7px 0;
}

.reveal {
    cursor: pointer;
    text-decoration: underline;
}