:root {
  --BG: #464646;
  --White: #dadada;
  --Dark: #0b2b53;
  --Light: #049a9e;
}

body {
  background-color: var(--BG);
  font-family: "Courier Prime", monospace;
}

#title {
  position: fixed;
  cursor: default;
  top: 10px;
  left: 32px;
  background-color: var(--Dark);
  color: var(--White);
  border: solid;
  border-radius: 10px;
  padding: 8px;
}

ul {
  position: absolute;
  right: 16px;
  list-style-type: none;
  display: flex;
  border-bottom: solid;
  padding-bottom: 16px;
  border-color: var(--White);
}

.button {
  padding: 8px;
  border: solid;
  border-color: var(--White);
  margin-right: 10px;
  background-color: var(--Light);
  border-radius: 10px;
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}

.button:hover {
  transform: scale(1.5);
  cursor: pointer;
}

a {
  color: var(--White);
  text-decoration: none;
}

li {
  margin-top: 16px;
}

@media only screen and (max-width: 700px) {
  ul {
    flex-direction: column;
  }
  p {
    max-width: 200px;
  }
}

#home {
  border-color: var(--Dark);
}

p {
  position: fixed;
  transform: translateY(200px);
  font-size: 40px;
  color: var(--White);
}
