#sidebar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-secondary);

  transform: translateX(-100%);
  transition: transform .4s;
  z-index: 10000;
}

#sidebar.open {
  transform: translateX(0);
}

#sidebar-close-icon {
  font-size: 2.25rem;
}

.sidebar-header {
  box-sizing: border-box;
  width: 100%;
  padding: .5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-header h1 {
  line-height: 1;
  font-family: var(--font-header);
  cursor: default;

  font-size: 1.75em;
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 70%;
}

.sidebar-options {
  list-style-type: none;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.sidebar-option button{
  font-family: var(--font-header);
  font-size: 1.5em;
  font-weight: 500;
  color: var(--text-primary);

  text-align: center;

  margin: .5em 0;

  background-color: transparent;
  border: none;
}

.sidebar-option.selected button{
  color: var(--accent-yellow);
  font-weight: 700;
  font-size: 1.75em;
}

a {
  text-decoration: none;
  color: inherit;
}

.sidebar-footer {
  position: absolute;
  bottom: 6em;
  width: 100%;
  padding: 1em;
  box-sizing: border-box;
  text-align: center;
}

.sidebar-footer p{
  font-family: var(--font-body);
  font-size: 1em;
  font-weight: 500;
  color: var(--text-dark);
}