@charset "UTF-8";
.error {
    width: 440px;
    margin: auto;
    font-size: 16px;
}
.error-content {
    padding: 20px;
    text-align: center;
}
h1{
    font-size: 24px;
    margin-bottom: 32px;
    font-weight: bold;
}
.fas.fa-exclamation-triangle{
    color: var(--alert-color);
    margin-right: 20px;
}
p{
    margin-bottom: 60px;
}
.error-btn{
    width: 100%;
    height: 50px;
    background-color: var(--main-color);
    color: var(--white);
    border: none;
    cursor: pointer;
}
.error-main {
    background-image:url(../img_LT/icon_alert.svg);
    background-size: 650px;
    background-repeat: no-repeat;
    background-position: -160px;
}
.error-title {
    font-size: 100px;
}
.error-sub-title {
    font-size: 36px;
}

@media screen and (max-width: 767px) {
    .error-main {
        background-size: 320px;
        background-position: -60px;
    }
    .error-title {
        font-size: 64px;
    }
    .error-sub-title {
        font-size: 24px;
    }
}
@media screen and (max-width: 576px) {
    h1 {
        font-size: 18px;
        margin-bottom: 24px;
    }
    p {
        font-size: 12px;
        margin-bottom: 40px;
    }
    .error-main {
        background-size: 200px;
        background-position: -60px;
    }
    .error-btn {
        width: 100%;
    }
    .error-title {
        font-size: 42px;
    }
    .error-sub-title {
        font-size: 16px;
    }
    .error-wrap{
        width: 100%;
    }
    .error {
        width: 100%;
    }
}