/* Error-page *************************************************************/

.error-page {
    min-height: 60vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    text-align: center;
    background-color: #fff;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error-img {
    max-width: 420px;
    width: 100%;
    height: auto;
    margin-bottom: 5px;
    display: block;
}

.error-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-base-text);
    margin-bottom: 10px;
}

.error-content p {
    max-width: 500px;
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Error-page 📱 **************************/
@media (max-width: 768px) {
    .error-content h1 {
        font-size: 80px;
    }
    .error-content h2 {
        font-size: 24px;
        margin-top: -10px;
    }
}