* {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #DCD7BA;
}

pre {
    white-space: pre-wrap;
}

h1 {
    font-size: 20px;
    font-weight: 700;
}

#outer {
    min-width: 500px;
    margin-left: 20%;
    margin-right: 20%
}

#grid {
    display: grid;
    grid-template-rows: auto auto 1fr auto auto;
    grid-template-columns: 1fr auto auto;
    background-color: #252535;
    box-shadow: 5px 5px #54546D;
}

.menu-icon {
    cursor: pointer;
    color: #C8C093;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #54546D;
    background-color: #223249;
}

.menu-icon>.line {
    background-color: #DCD7BA;
    height: 2px;
    width: 30px;
    display: block;
}

.menu-icon>.line+.line {
    margin-top: 8px;
}

.row {
    display: flex;
}

.flex-end {
    display: flex;
    justify-content: flex-end;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 0;
}

.flex-container-right {
    justify-content: right;
    display: flex;
    flex-wrap: wrap;
    flex-grow: 0;
}

.flex-item {
    padding: 10px;
    align-self: center;
    flex-basis: auto;
    display: inline-block;
}

.header {
    width: 100%;
    background-color: #8f3f71;
    margin: 5px;
    padding: 10px;
    align-self: center;
    display: inline-block;
    text-align: center;
}

.right-header {
    text-align: right;
    flex: 5%;
}

.content {
    grid-column: 1/-1;
    background-color: #252535;
    margin: 0px;
    padding: 5px;
}

.footer {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    background-color: #252535;
    padding: 5px;
}

.left-footer {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 5%;
}

.btn {
    background-color: #223249;
    border: 1px solid #2D4F67;
    border-radius: 5px;
    padding: 10px;
    color: #C8C093;
    text-align: center;
    cursor: pointer;
    user-select: none;
    width: fit-content;
    text-decoration: none;
}

.settings_btn {
    background-color: #223249;
    border: 1px solid #54546D;
    border-radius: 5px;
    padding: 10px;
    color: #C8C093;
    text-align: center;
    cursor: pointer;
    user-select: none;
    width: fit-content;
}

.settings_btn:hover {
    background-color: #54546D;
}

.btn:hover {
    background-color: #2D4F67;
}

.answer {
    border-left: 6px solid #2B3328;

}

.answer_text {
    font-weight: 400;
    visibility: hidden;
}

.title {
    background-color: #2D4F67;
}

.title-prefix {
    background-color: #2D4F67;
    padding-right: 10px;
}

.question {
    display: inline-block;
    border-left: 6px solid #DCA561;
}

.question:hover {
    background-color: #363646;
}

.checkbox_container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fb4934;
}

/* On mouse-over, change background color */
.checkbox_container:hover input~.checkmark {
    background-color: #dcd7ba;
}

/* When the checkbox is checked, change background color */
.checkbox_container input:checked~.checkmark {
    background-color: #8ec07c;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox_container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox_container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

body {
    background-color: #16161D;
}

@media screen and (max-width:800px) {
    #outer {
        min-width: 96%;
        margin-left: 2%;
        margin-right: 2%
    }
}
