﻿.not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 50px 0 50px 0;
    gap: 30px;
}

.not-found img {
    width: 200px;
    filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));
}

.not-found p {
    font-weight: 700;
    font-size: 2em;
    text-align: center;
    color: var(--colorGrayDark);
}

.error {
    min-height: 100vh;
    align-items: center;
    justify-items: center;
    display: grid;
    align-content: center;
}

.error img {
    width: 300px;
    filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));
    margin-bottom: 20px;
}

.error .sorry {
    margin-top: 20px;
    font-size: 3em;
}

.error .refresh {
    font-size: 2em;
}

.error .message {
    font-size: 1em;
}

.error p {
    font-weight: 700;
}
