﻿body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: linear-gradient(to right, #003282, #007dfa, #00cde1);
}

.error-container {
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 90vw;
    max-width: 700px;
    height: auto;
    aspect-ratio: 1.71 / 1;
    position: relative;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}

.pulse-button {
    align-self: flex-start;
    margin-left: 20px;
    padding: 10px 20px;
    font-size: 1.2em;
    text-decoration: none;
    font-family: 'Trebuchet MS', sans-serif;
    text-align: center;
    color: #ffffff;
    border-radius: 5px;
    background: #19be37;
    cursor: pointer;
    transition: background-color 0.3s;
    animation: pulse 1.5s infinite;
}

.pulse-button:hover {
    animation: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.9);
    }
}

.error-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 10px;
    object-fit: cover;
}

.error-container h2 {
    font-size: 20px; 
    margin-left: 20px;
    color: #ffffff;
}

.error-container p {
    font-size: 18px; 
    margin-left: 20px;
    color: #f1f0f0;
}

@media (max-width: 768px) {
    .error-container h2 {
        font-size: 18px;      
    }

    .error-container p {
        font-size: 13px;
    }

    .pulse-button {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .error-container h2 {
        font-size: 18px; 
    }

    .error-container p {
        font-size: 11px;
    }

    .pulse-button {
        font-size: 0.9em;
    }
}

.blocked {
    color: #ff6666;
    margin-left: 20px;
    font-weight: bold;
    font-size: 20px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

.grey {
    background: #2e2f2f;
}