
.myerrorcontainer {
    display: flex;
    justify-content: center;
    align-content: center;
    height: 80vh;
    text-align: center;
}
.error-code {
    font-size: 10rem;
    font-weight: 700;
    color: #343a40;
}
.error-message {
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.btn-home {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;

}
.btn-home:hover {
    color: var(--hoversecondary-color);
    background-color: var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}
