body {
    margin: 0;
    padding: 0;
    background-color: black;
    overflow: hidden;
}

canvas {
    position: absolute;
    background-color: black;
    bottom: 0;
}

button {
    width: 100%;
    height: 50px;
    background-color: rgb(48, 46, 46);
    color: white;
    user-select: none;
}

li {
    margin-left: 50px;
}

a {
    color: rgb(164, 164, 243);
}

.number_input {
    width: 10%;
    height: 2%;
    background-color: black;
    color: white;
    margin-bottom: 25px;
}

.info_window {
    position: absolute;
    padding: 10px;
    padding-bottom: 0;
    background-color: black;
    color: white;
    visibility: hidden;
    bottom: 0;
}

#pc {
    width: 100%;
    height: 100%;
}

#menu {
    z-index: 2;
    position: absolute;
    width: 25%;
    height: 100%;
    right: 0;
    border: 5px grey solid;
    background: black;
    overflow: auto;
}

#menu::-webkit-scrollbar {
    display: none;
  }

#tabs {
    display: flex;
    flex-direction: row;
    z-index: 1;
    position: absolute;
    width: 75%;
    height: 5%;
    background-color: black;
    border: 5px grey solid;
    padding-bottom: 5px;
}

#settings_container {
    display: flex;
    flex-direction: column;
    min-width: 50%;
    min-height: 100%;
    padding-left: 1%;
}

#clear_screen {
    background-color: red;
}
