body {
    background-color: rgb(47, 67, 74);
    color: rgb(219, 249, 244);
    text-align: center;
}

p {
    font-family: "Times New Roman", Times, serif;
}

textarea {
    font-family: "Times New Roman", Times, serif;
}

a {
    font-family: "Times New Roman", Times, serif;
    color: rgb(113, 226, 207);
}

table {
    margin-left: auto;
    margin-right: auto;
}

.block-fill {
    height: 300px;
    resize: none;
}

.area-large {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.text-area {
    display: block;
    text-align: left;
    padding: 12px 12px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: 2px solid rgb(167, 205, 201);
    border-radius: 10px;
    background-color: #2e3a38;
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.button:active {
    border: 7px solid rgb(255, 255, 255);
    transition: border 0.01s linear;
}

.button:hover {
    background-color: #61ab9d;
    color: rgb(255, 255, 255);
}

.button {
    text-align: center;
    background-color: #a0cec6;
    color: rgb(255, 255, 255);
    border: 7px solid rgb(123, 204, 196);
}

.button-large {
    width: 70%;
    height: 50px;
    border-radius: 25px;
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    transition: border 0.7s linear;
}

.button-right {
    width: 50px !important;
    height: 50px !important;
    margin-left: 10px;
    padding: 0px 0px 0px 0px;
    border-radius: 50px;
    font-size: 16px;
    transition: border 0.7s linear;
    cursor: copy;
}

.container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-right: 30px;
    cursor: pointer;
    font-size: 19px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.5s linear;
}

/* Hide the browser's default checkbox */

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    transition: all 0.5s linear;
}

/* Create a custom checkbox */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    transition: all 0.5s linear;
}

/* On mouse-over, add a grey background color */

.container:hover input~.checkmark {
    background-color: #ccc;
    transition: all 0.5s linear;
}

/* When the checkbox is checked, add a blue background */

.container input:checked~.checkmark {
    background-color: rgb(123, 186, 180);
    transition: all 0.5s linear;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    transition: all 0.5s linear;
}

/* Show the checkmark when checked */

.container input:checked~.checkmark:after {
    display: block;
    transition: all 0.5s linear;
}

/* Style the checkmark/indicator */

.container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 0.5s linear;
}