body {
  background-color: rgb(199, 199, 199);
  color: black;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

  padding-left: 215px;
}

a {
  box-sizing: border-box;
  transition: 0.2s ease;
}

a:-webkit-any-link {
  text-decoration: none;
  color: white;
  cursor: none;
}

a:hover {
  background-color: rgba(90, 90, 90, 0.329);
  transition: 0.2s ease;
}

.logo {
  width: 100px;
  height: 100px;
  transition: 0.2s ease;
}

.logo:hover {
  transform: scale(1.1);
  transition: 0.2s ease;
  cursor: none;
}

#header {
  box-sizing: border-box;
  padding-top: 15px;

  height: 100vh;
  width: 200px;
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  gap: 15px;
  flex-flow: column nowrap;
  align-items: center;

  transition: 0.2s ease;
}

#content {
  width: 100%;
  height: 100%;
}

#content .panel {
  width: 100%;
  height: 100%;

  display: none;
}

#nav {
  width: 100%;
  height: fit-content;
  color: white;

  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: end;
}

#nav a {
  width: 100%;

  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;

  border-top: 1px solid rgb(39, 39, 39);
}

#nav p {
  font-size: x-small;
}

@media screen and (max-width: 1000px) {
  #header {
    width: 50px;

    transition: 0.2s ease;
  }

  .logo {
    width: 35px;
    height: 35px;
  }

  body {
    padding-left: 75px;
  }
}
