body {
    padding: 0;
    background-color: #f8f9fa;
    font-family: 'Roboto', 'sans-serif';
}

.error-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.error-code {
    font-family: 'Anton', 'sans-serif';
    letter-spacing: 15px;
    font-size: 10rem;
    color: #343a40;
}

.error-message {
    font-family: 'Anton', 'sans-serif';
    font-size: 2rem;
    letter-spacing: 2px;
    font-weight: 100;
    color: #343a40;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    body{
        padding: 0 20px;
    }
    .error-code {
        letter-spacing: 10px;
        font-size: 8rem;
    }

    .error-message {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
}
