a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: red;
}

nav ul {
    text-decoration: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline-block;
    padding-right: 10px;
}

nav li a {
    display: block;
    background-color: #ff9800;
    padding: 2px 10px;
    border-radius: 20px;
    color: white;
}

nav li a:hover {
    background-color: yellowgreen;
}

.frmrow {
    width: 100%;
    margin-bottom: 10px;
}

input, textarea {
    width: 100%;
}


button {
    background-color: aqua;
    border: none;
    border-radius: 20px;
    padding: 20px;
    color: white;
    cursor: pointer;
    font-size: 20px;
}

button:hover {
    background-color: blueviolet;
}

.flex {
    display: flex;
    justify-content: space-between;
}

label {
    display: block;
    color: blueviolet;
}

.note-editable {
    font-family: "Noto Sans KR", sans-serif;
    /* font-family: "주아체", sans-serif; */
}