.error-text {
    padding: 20px;
    text-align: center;
    margin-top: 60px;;
}

.error-text h1 {
    font-size: 120px;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.error-text h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.error-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .error-text h1 {
        font-size: 100px;
    }

    .error-text h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .error-text h1 {
        font-size: 80px;
    }

    .error-text h2 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .error-text h1 {
        font-size: 70px;
    }

    .error-text h2 {
        font-size: 20px;
    }
}

.empty-icon {
    animation: bounce 1.6s infinite ease-in-out;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}