body {
  margin: 0;
  font-family: Arial, sans-serif;
}

h1, a {
  color: rgb(170, 170, 170);
  font-size: 1.5rem;
}

header {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.logobox {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1 300px;
  padding: 1rem;
  background-color: rgb(22, 22, 22);
  border-bottom: 5px solid rgb(170, 170, 170);
}

.WebsiteIcon {
  width: 60px;
  height: 60px;
  background-image: url("../../fotos/JerryKatBastiaan.webp");
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}

.WebsiteName {
  margin: 0;
}

.logIntxt {
  margin: 0;
  align-self: center;
  position: fixed;
  right: 2%;
}

.statsToggle {
  display: none;
  background: rgb(22, 22, 22);
  border: 1px solid rgb(75, 75, 75);
  color: rgb(170, 170, 170);
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  cursor: pointer;
  position: fixed;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 102;
  transition: left 0.3s ease, background 0.2s ease, border-color 0.2s ease;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  line-height: 1;
  user-select: none;
}

.statsToggle:hover {
  background: rgb(35, 35, 35);
  border-color: rgb(130, 130, 130);
  color: rgb(210, 210, 210);
}

.statsToggle:active {
  background: rgb(45, 45, 45);
}

.statsToggle.shifted {
  left: calc(35% + 10px);
}

@media (max-width: 600px) {
  .statsToggle {
    display: block;
  }
}




