.errorView {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Тень: смещение по горизонтали, смещение по вертикали, размытие, цвет */
    margin-top: 30px;
    margin-bottom: 30px;
    justify-content: center;
    font-weight: 600;
    text-align: center;
}

.page-not-found {
    max-width: 35%;
    height: auto;
}

.back-home-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #d80027;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.back-home-button:hover {
    background-color: #673AB7;
    color: #fff;
}

.page-not-found-msg {
    text-align: center;
    font-size: 19px;
}