* {
    font-family: monospace;
}

body {
    background-color: black;
    color: tomato;
}

/* SCROLL BAR CUSTOM  */

body::-webkit-scrollbar {
  width: var(--sb-size);
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
  border: 1px solid #ff7200;
}

@supports not selector(::-webkit-scrollbar) {
  body {
      scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}

a {
    color: rgb(88, 174, 2);
    text-decoration: none;
    transition: 0.8s;
}

a:hover {
    color: rgb(0, 255, 204);
    text-decoration: none;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.padding-20 {
    padding: 20px;
}

.holodeck-size {
    width: 1000px;
    height: 1000px;
}

.holo-img-bg {
    width: 900px;
    height: 700px;
}

.hidden-class {
    display: none;
    transition: 1s;
}

.not-hidden {
    transition: 1s;

}

/* end global classes  */

#main-container {
    padding-top: 100px;
    background-color: rgb(0, 0, 0);
}

#menu-bar {
    z-index: 1;
    display: flex;
    position: fixed;
    justify-content: space-evenly;
    width: 100vw;
    background-color: navy;
    font-size: larger;
}

#holodeck-container {
    background-color: rgba(29, 25, 151, 0.357);
}
