:root {
    --color-bg: #020202;
    --color-fg: #a9b2b2;
    --color-link: #595e5e;
    --color-link-visited: #595e5e;
    --color-link-hover: #808787;
}

html, body {
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: "Terminus";
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  column-gap: 60px;
  align-items: center;
  justify-content: center;
  min-height: 99%;
}


.head {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 40px;
  padding-top: 60px;
}

.category {
  display: flex;
  flex-direction: column;
  width: 180px;
}

.bookmarks {
  display: flex;
  justify-content: center;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.title {
  font-size: 20px;
  line-height: 1.3;
}

li {
  font-size: 16px;
  list-style-type: none;
  padding: 5px;
  line-height: 1;
}

a:link {
  text-decoration: none;
  color: var(--color-link);
}

a:visited {
  color: var(--color-link-visited);
}

a:hover {
  color: var(--color-link-hover);
}

.blinking {
  animation: opacity 1s ease-in-out infinite;
  opacity: 1;
}

@keyframes opacity {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
