﻿body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.error-container {
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

    .error-container h1 {
        font-size: 100px;
        color: #333;
    }

    .error-container p {
        font-size: 20px;
    }
button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #084463;
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
}

    button:hover {
        background-color: #085177;
    }
/* Simple animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.error-container {
    animation: fadeIn 2s;
}
