.content {
    word-break: keep-all;
}

html,
body {
    height: 100%;
}

body>section {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

section.content {
    flex: 1;
}

body {
    font-family: 'Noto Sans KR';
}

.recommendation-people {
    margin-top: 12px;
}

.recommendation-title {
    font-weight: 600;
    font-size: 16px;
}

.recommendation-content {
    line-height: 1.8em;
    font-size: 16px;
}

.main-link {
    opacity: 0;
    border-bottom: 2px solid white;

    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.main-link:hover {
    opacity: 0.5;

    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

button[type="submit"]:disabled:not(.disabled) {
    cursor: wait !important;
}