html,body {
    height: 100%;
    margin: 0;
    font-size: 62.5%;
    text-align: center;
}

.hide {
    display: none !important;
}

h1 {
    font-size: 30px;
    font-size: 3.0rem;
}

h2 {
    font-size: 24px;
    font-size: 2.4rem;
}

p, div, input {
    font-size: 16px;
    font-size: 1.6rem;
}

button {
    font-size: 16px;
    font-size: 1.6rem;
}

.button {
    display: block;
    margin: 10px auto;
}

.home > div,
.admin > div,
.admin_questions > div,
.admin_responses > div {
    border-bottom: 2px solid black;
    padding: 0px 0px 15px 0;
}

.admin_questions .list,
.admin_responses .list {
    width: 100%;
    margin: 0 auto;
}

.admin_questions .list > div,
.admin_responses .list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-top: 1px solid #ccc;
}

.admin_questions .list .handle, .admin_questions .list .edit, .admin_questions .list .remove,
.admin_responses .list .handle, .admin_responses .list .edit, .admin_responses .list .remove, .admin_responses .list .value {
    height: 20px;
    cursor: grab;
    border-radius: 3px;
    padding: 3px;
    margin-right: 3px;
}

.admin_questions .list .handle ,
.admin_responses .list .handle {
    background-color: #ddd;
    width: 20px;
}

.admin_questions .list .handle:hover ,
.admin_responses .list .handle:hover {
    background-color: #bbb;
}

.admin_questions .list .edit ,
.admin_responses .list .edit {
    background-color: lightGreen;
    width: 20px;
}

.admin_questions .list .edit:hover ,
.admin_responses .list .edit:hover {
    background-color: green;
}

.admin_questions .list .remove ,
.admin_responses .list .remove {
    background-color: red;
    color: white;
    cursor: pointer;
    width: 20px;
}

.admin_questions .list .remove:hover ,
.admin_responses .list .remove:hover {
    background-color: darkred;
}

.admin_questions .list .value ,
.admin_responses .list .value {
    background-color: lightBlue;
    width: 35px;
    border: 1px solid black;
}

.admin_questions .list .text ,
.admin_responses .list .text {
    flex-grow: 1;
    padding-left: 10px;
    text-align: left;
}
