graph-board {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    overflow: hidden;
    position: absolute;
}

body {
    padding: 0px;
    margin: 0px;
    background-color: #6e524d;
    color: white;
}

* {
    font-size: 18px;
}

#topbar {
    z-index: 100;
    position: absolute;
    background-color: #6e524d;
    width: 100vh;
    flex-flow: row;
    display: flex;
    width: 100%;
}

#exerciseList {
    display: flex;
    padding: 8px;

}


#statement {
    flex-grow: 2;
}

#graphqnlist {
    display: none;
}


.hidden {
    display: none;
}

button {
    padding: 8px;
    background-color: rgb(117, 117, 211);
    border-radius: 4px;
    border: 1px none black;
    color: white;
    font-weight: bold;
}

button:hover {
    filter: brightness(1.1);
}

#exerciseList button {
    width: 80%;
    display: block;
    margin: 5px;
}

#title {
    font-size: 24px;
    text-align: center;
    padding: 16px;
}


#help {
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
  margin: 8px;
  border-radius: 8px;
}
#buttonSubmit {
    background-color: green;
}

#buttonExerciseMenu {
    font-size: 32px;
    padding-top:0px;
}

#statement {
    padding: 8px;
}

#buttonResume {
    margin-bottom: 32px;
}