/* style.css */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 90%;
    width: 600px;
}

.error-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    display: block;
    margin: 0 auto 2rem auto;
}

.tekst {
    font-size: 1.5rem;
    color: #2980b9;
    font-weight: bold;
    line-height: 1.4;
    margin: 0;
}

*:focus {
    outline: 3px solid #f1c40f;
    outline-offset: 4px;
}