* {
    font-family: 'Pretendard Variable';
}
body {
    height: 100vh;
}
img {
    object-fit: cover;
}

/* ### error page ### */
.page-error-wrap {
    min-height: 100vh;
    height: 100%;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fafbfc;
}

/* --- error thumbnail --- */
.error-thumb {
    margin: 0 0 20px;
}
.error-thumb img {
    width: 330px;
}

/* --- error 문구 --- */
.error-desc {
    line-height: 1.3em;
    font-size: 42px;
}

/* --- 홈으로 버튼 --- */
.error-btn {
    margin: 30px 0 0;
}
.error-btn .btn {
    width: 160px;
    height: 55px;
    line-height: 55px;
    border-radius: 100px;
    font-size: 16px;
}

/* --- error.html --- */
#pageError .error-thumb {
    margin: 0 0 30px;
}
#pageError .error-thumb img {
    width: 280px;
}