@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap');


:root {
  /*--color-brand: #14F4D7;*/
  /*--color-brand: #48d1cc; /* mediumturquoise */
  --color-brand: #40e0d0; /* turquoise */
}

html {
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  color: black;
  line-height: 1.5em;
  background-color: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 100px solid var(--color-brand);
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}

body {
  display: flex;
  margin: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
}

#logo {
  width: 200px;
  height: 100px;
  -webkit-mask: url(logotype.svg) no-repeat center;
  mask: url(logotype.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: black;
}

#links {
  margin: 0;
  padding: 0;
  text-align: right;
}

#links li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  padding: 0 0.5em;
  cursor: pointer;
}

a:hover, a:active {
  /*text-decoration: underline;*/
  color: var(--color-brand);
  background-color: black;
}

@media (max-width: 400px) {
  body {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
  }

  #links {
    text-align: center;
  }

  #links li {
    margin-bottom: 6px;
  }
}
