body {
    background-color: rgb(32, 33, 36);
    color: rgb(255, 255, 255);
    width: 90%;
    margin: auto;
    font-family: sans-serif;
    font-weight: bold;
}

hr {
    opacity: 25%;
    border-color: rgb(0, 150, 255);
    width: 100%;
}

a {
    color: rgb(0, 100, 255);
}

.hidden {
    display: none;
}

.clock {
    float: right;
}

#clock {
    font-size: 24px;
}

.mainDIV {
    text-align: center;
}

.responseDiv {
    max-width: 600px;
    width: 100%;
    min-height: 50px;
    margin: auto;
    color: rgb(255, 255, 255);
    border: solid 1px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    font-size: 18px;
}

#Response {
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 10px;
    background-color: rgb(32, 33, 36);
    color: rgb(150, 150, 150);
    border: none;
    outline: none;
    resize: vertical;
    cursor: default;
    font-family: sans-serif;
    font-size: 18px;
}

.inputArea {
    max-width: 600px;
    width: 100%;
    height: 300px;
    padding: 10px;
    box-sizing: border-box;
    background-color: rgb(32, 33, 36);
    color: rgb(255, 255, 255);
    border: solid 1px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    outline: none;
    font-family: sans-serif;
    font-size: 18px;
}

.settingMenu  {
    background-color: rgb(32, 33, 36);
    color: rgb(255, 255, 255);
    border: solid 1px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    font-size: 18px;
    padding: 5px;
    width: fit-content;
    margin: auto;
}

.btn {
    width: 300px;
    max-width: 80%;
    background-color: rgb(32, 33, 36);
    color: rgb(255, 255, 255);
    border: solid 1px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    font-size: 18px;
    padding: 5px;
    cursor: pointer;
    transition: 300ms;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.btn:hover {
    animation: L2R 2s;
    box-shadow: inset 1000px 0px 0px rgb(0, 100, 255);
}

@keyframes L2R {
    0% {
        box-shadow: inset 0px 0px 0px rgb(0, 100, 255);
    }
    100% {
        box-shadow: inset 1000px 0px 0px rgb(0, 100, 255);
    }
}

.credit {
    font-size: 18px;
    text-align: center;
}
