:root {
  --color-1: #0f1016;
  --text-color: #f0f0f0;
  --accent-color: #006aff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 12pt;
  font-family: Helvetica, sans-serif;
}
nav {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  height: 60px;
  background-color: var(--color-1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.links-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
nav a {
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
  background-color: transparent;
  transition: background-color 0.3s ease;
}

nav a:hover {
  transition: all ease 0.3s;
  background-color: var(--accent-color);
}
nav .home-link {
  margin-right: auto;
}

nav svg {
  fill: var(--text-color);
}
#sidebar-active {
  display: none;
}
.open-sidebar-btn,
.close-sidebar-btn {
  padding: 0 20px;
  display: none;
}
@media (max-width: 300px) {
  .links-container {
    flex-direction: column;
    align-items: flex-start;

    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    width: 300px;
  }
}
