html {
    height: 80%;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    height: 100%;
    width: 80%;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* Creates a full-height, left-mounted navigation menu */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--nav-width);
    height: 100vh;
    background: #222222;
}

/* Making these look fantastic */
.nav__link {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    color: #eeeeee;
    font-weight: 500;
}

.nav__link:hover {
    background: rgba(255, 255, 255, 0.05);
}

#app {
    margin: 2em;
    line-height: 1.5;
    font-weight: 500;
}

/* The 'dcode' green always needs to make an appearance */
a {
    color: #009579;
}

#main {
    margin-top: 2%;
    height: 100%;
    max-height: 100%;
}

#title {
    margin-bottom: 20px;
    height: 35px;
    width: 20%;
}

#textarea {
    resize: none;
    height: 90%;
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
}

#button-group {
    display: flex;
}

#button-group {
    height: 20%;
    width: 100%;
    max-width: 100%;
}

.button {
    flex: 1;
    height: 45px;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

#upload-file {
    margin-left: 20px;
    margin-right: 20px;
}

#fileLoader {
    display: none;
}