/* ==============main.css============== */
/* week~.html의 css파일 */

@charset "UTF-8";
html {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 100px;
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

input, button, select, optgroup, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button {
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: #fff;
    border: 2px;
    background-color: #0f74e0;
    transition: background-color .2s
}

button:hover {
    background-color: #0561c4;
}

button:active {
    background-color: #003c7c;
}

button:disabled {
    opacity: .5;
    pointer-events: none;
}

input {
    padding: 6px 12px;
    border-radius: 6px;
    color: #495057;
    border: 2px solid #ced4da;
}

textarea {
    width: 500px;
    height: 200px;
}

select {
    border: 2px solid #ced4da;
}