header {
  display: flex;
  color: var(--primary-container-text);
  background-color: var(--secondary-bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header > h2 {
  margin-top: 0px;
}

header > a {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header > a > p {
  margin: 0px;
}

#disconnect {
  position: absolute;
  right: 20px;
  color: var(--primary-text);
  text-decoration: none;
  background-color: var(--disconnect);
  padding: 10px;
  border-radius: 10px;
}

#profil {
  position: absolute;
  left: 20px;
  color: var(--primary-text);
  text-decoration: none;
  background-color: var(--profile);
  padding: 10px;
  border-radius: 10px;
}


@media screen and (max-width: 800px) {
  header a p {
    display: none;
  }
  
  header a {
    width: fit-content;
    top: 20px;
  }
}