/* ERROR PAGE */
#error-page {
    width: 65vh;
    height: 65vh;
    max-width: 80vw;
    max-height: 80vw;
    position: relative;
    margin: auto;
    border: 0.2em solid var(--themeColor2);
    border-radius: 0.3em;
    box-sizing: border-box;
    margin-top: -1em;
}
#error-page img {
    width: 100%;
    opacity: 0.9;
    border-radius: 0.2em;
}
#error-page h5 {
    position: absolute;
    left: 0; right: 0; bottom: 10%;
    font-family: Arial, Helvetica, sans-serif;
    font-variant: small-caps;
    font-size: 2em;
    font-weight: bold;
    color: var(--themeColor2);
    text-shadow:
        -1px -1px 0 white,  
        1px -1px 0 white,
        -1px 1px 0 white,
        1px 1px 0 white;
    animation: errorAnimation 1s linear infinite;
}
@keyframes errorAnimation {
    0% {transform: scale(1)}
    50% {transform: scale(1.03)}
    100%{transform: scale(1)}
}