* {
    box-sizing: border-box;
    font-family: 'Noto Sans SC', sans-serif;
    color: #555;
    margin: 0;
}

button {
    min-width: 40px;
    min-height: 40px;
}

a {
    padding: 0.5rem 0;
}

/* Layout */

.container {
    padding: 0 10px 0 10px;
    padding-bottom: 49px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: 100%;

    background-color: whitesmoke;
}

.mc-header {
    width: 100%;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.mc-main {
    width: 100%;
    flex-grow: 1;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    position: relative;
}

.mc-input {
    width: 100%;
    flex-grow: 1;
}

#input-textarea {
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100vh;
    resize: none;
    font-weight: 400;
    font-family: 'SongTi', 'Times New Roman', Times, serif;
    font-size: 1rem;
    color: #000;

    -webkit-box-shadow: 0px 5px 10px 0px rgba(186,186,186,1);
    -moz-box-shadow: 0px 5px 10px 0px rgba(186,186,186,1);
    box-shadow: 0px 5px 10px 0px rgba(186,186,186,1);

    border: none;
    padding: 8px;
    outline: none;
}

.mc-control {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.mc-output {
    /* display: none; */
    width: 100%;
    position: absolute;
    bottom: 60px;
    
    border: none;
    background-color: white;

    /* box-shadow: 0px -5px 5px -5px rgba(186,186,186,1); */
    -webkit-box-shadow: 0px 5px 10px 0px rgba(186,186,186,1);
    -moz-box-shadow: 0px 5px 10px 0px rgba(186,186,186,1);
    box-shadow: 0px 5px 10px 0px rgba(186,186,186,1);
}

#output-textarea {
    min-width: 100%;
    max-width: 100%;
    height: 55vh;
    resize: none;
    font-weight: 400;

    font-family: 'SongTi', 'Times New Roman', Times, serif;
    font-size: 1rem;
    color: #000;

    border: none;
    padding: 0 8px;
    outline: none;

    margin-bottom: 8px;
}

.mc-c1 {
    display: flex;
}

/* Details */

h1 {
    font-size: 1.2rem;
    margin: 0;
}

.mc-title2 {
    font-weight: 700;
    font-size: 1rem;
    margin: 8px;
}

.mc-button {
    font-size: 1rem;
    width: 6rem;
}

.mc-button-2 {
    font-size: 1rem;
    width: 10rem;
}

.folded {
    display: none;
}

#mc-c1-button {
    text-decoration: none;
}

/* @media screen and (max-width: 460px) {
    .container {
        
    }
} */

@media screen and (min-width: 461px) {
    .container {
        padding-bottom: 0;
    }
}