body {
    margin: 0;
    padding: 0;
    background-color: #626262;
    display: flex;
    flex-direction: column;
    height: 100vh;
}


/* ↓↓↓ header ↓↓↓ */

header {
    color: #fff;
    z-index: 2;
    box-shadow: 0 5px 10px #00000050;
    background: linear-gradient(to top, #1a1a1a, #111);
}

h1 {
    padding-left: 10px;
    margin: 3px;
}

#togglebutton {
    user-select: none;
}

h1 a {
    color: white;
    text-decoration: none;
}

#textdisplay {
    position: fixed;
    left: 50%;
    transform: translate(-50%);
}

#randomdiv {
    position: fixed;
    right: 0;
    user-select: none;
}

#guiContainer {
    position: fixed;
    right: 10px;
    top: 1.5em;
    padding: 10px;
    padding-right: 2em;
    background-color: #000;
    box-shadow: 0px 0px 5px #555;
    border-radius: 5px;
    overflow-y: scroll;
}

#closeGui {
    position: absolute;
    right: 10px;
    border: none;
    color: white;
    background-color: #ff0000;
}

#closeGui:hover {
    color: white;
}


/* ↑↑↑ header ↑↑↑ */


/* ↓↓↓ container ↓↓↓ */

#container {
    display: flex;
    flex-grow: 1;
    height: 80%;
}


/* ↓↓↓ leftcontainer ↓↓↓ */

#leftcontainer {
    background-color: #111;
    width: 10%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    box-shadow: 5px 0px 5px #000000;
    z-index: 3;
}

#leftcontainer a {
    display: block;
    padding: 5px 0 5px 5px;
    width: auto;
    text-decoration: none;
    color: #fff;
    text-align: left;
    border-left: 5px solid black;
    font-weight: bold;
    font-size: 150%;
    background: linear-gradient(to left, #222, #111);
    box-shadow: 0px -5px 5px #000000;
}

#leftcontainer a:hover {
    background-color: #111;
    border-left: 5px solid #555;
    background: linear-gradient(to left, #111, #000);
    box-shadow: 0px 5px 5px black, 0px -5px 5px black;
    position: relative;
    z-index: 2;
}

#leftcontainer a:hover+* {
    z-index: 1;
}


/* ↑↑↑ leftcontainer ↑↑↑ */


/* ↓↓↓ centercontainer ↓↓↓ */

#centercontainer {
    background-color: #111;
    flex-grow: 1;
    overflow-y: scroll;
    width: 60%;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #111, #151515);
}

#categoryHeader {
    padding: 0;
    margin-bottom: 5px;
    text-align: center;
    background-color: #22222265;
    font-size: 200%;
    color: #aaa;
    border-radius: 10px;
    box-shadow: 0 5px 5px #000;
    background: linear-gradient(to right, #11111165, #22222265, #33333365, #22222265, #11111165);
    user-select: none;
}

section {
    margin: -15px 10px 0px 10px;
}

section .promptButton {
    font-size: 200%;
    padding: 2px 5px 0px 5px;
    margin: 0;
    margin-right: 0;
    font-weight: bold;
    border-radius: 20px;
    background-position: center;
    color: #777777;
    background-color: #22222280;
    box-shadow: 1px 1px 3px #000000;
}

section .promptButton:hover {
    background-color: #090909;
    color: #999;
    box-shadow: 0px 0px 5px #ffffff;
}


/* ↑↑↑ centercontainer ↑↑↑ */


/* ↓↓↓ rightcontainer ↓↓↓ */

#rightcontainer {
    background-color: #222;
    width: 25%;
    height: 100%;
    box-shadow: -5px 0px 5px #000000;
}

#optionalContainer {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#output {
    width: 100%;
    height: 300px;
    background-color: #000;
    color: #fff;
    overflow-y: scroll;
}

#option {
    text-align: center;
}

#newlinespan {
    color: white;
    user-select: none;
}

#newlinespan:hover {
    color: #666;
}

#copy {
    width: 100%;
    font-size: 150%;
    color: #ccc;
    border: #0a0a0a solid;
    background-color: #111;
    box-shadow: 0px -1px 5px #000000;
}

#copy:hover {
    color: black;
    background: linear-gradient(to right, #111, #111, #333, #111, #111);
}

#copy:active {
    border-color: black;
}

#destination {
    overflow-y: scroll;
    height: 100%;
    background: linear-gradient(to bottom, #000000, #111);
}

#destination button {
    font-size: 120%;
    border-radius: 20px;
    background-color: #5555555b;
    color: #999;
    font-weight: bold;
    background-size: cover;
    background-repeat: no-repeat;
}

#destination button:hover {
    background-color: #090909;
    color: #bbb;
    box-shadow: 0px 0px 5px #ffffff;
}

#deleteButton {
    color: #ccc;
    border: #0a0a0a solid;
    background-color: #111;
    box-shadow: 0px -1px 5px #000000;
}

#deleteButton:hover {
    color: black;
    background: linear-gradient(to right, #111, #111, #444, #111, #111);
}

#deleteButton:active {
    border-color: black;
}


/* ↑↑↑ rightcontainer ↑↑↑ */

.promptButton {
    background-color: #999;
    color: #111;
    border-radius: 20px;
}

button {
    user-select: none;
}

#leftcontainer::-webkit-scrollbar,
#centercontainer::-webkit-scrollbar,
#rightcontainer::-webkit-scrollbar,
#destination::-webkit-scrollbar,
#output::-webkit-scrollbar,
#guiContainer::-webkit-scrollbar {
    width: 0px;
}


/* ↓↓↓ footer ↓↓↓ */

footer {
    color: white;
    padding: 5px;
    text-align: center;
    box-shadow: 0 -5px 10px #000;
    background: linear-gradient(to bottom, #111, #000);
}


/* ↑↑↑ footer ↑↑↑ */
