html {
    background-color: black;
    color: white;
    text-align: center;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}

a {
    text-decoration:none;
    color:darkorchid;
    transition: ease-out 0.2s;
}

a:hover {
    color: azure;
    text-shadow: 0px 0px 5px white
}

h1 {
    text-shadow: 0px 0px 5px white
}

:root {
    --sidebar-width: 200px
}

.sidebar {
  margin: 0;
  padding: 0;
  width: 200px;
  background-color: #000000;
  border-right: 3px dotted rgba(0, 0, 0, 50%);
  position: fixed;
  height: 100%;
  overflow: auto;
  width: var(--sidebar-width);
  line-height: 30px;
}

.sidebar a {
    text-decoration: none;
}

@media screen and (max-width: 1080px) {
  .sidebar {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    position: relative;
    border-right: none;
    line-height: 20px;
    gap: 10px;
    border-bottom: 3px dotted rgba(0, 0, 0, 50%);;
  }

  .sidebar a {
    flex-shrink: 0;
  }
}

.everythingelse {
    margin-left: var(--sidebar-width);
}

@media screen and (max-width: 1080px) {
.everythingelse {
    margin-left: 0px
}
}

@media screen and (max-width: 1080px) and (pointer: coarse) {
    html {
        zoom: 2.5;
    }
}