

.container {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.error-code {
    font-size: 100px;
    margin-bottom: 10px;
    color: #ff0000;
}

.error-message {
    font-size: 24px;
    margin-bottom: 20px;
}

.description {
    font-size: 16px;
    margin-bottom: 30px;
}

.home-link {
    text-decoration: none;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.home-link:hover {
    background-color: #0056b3;
}
