@font-face {
    font-family: 'Bebas';
    src: url('../fonts/BEBAS.TTF') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    background: #040a12 url('../images/bg.jpg') no-repeat center top fixed;
    background-size: cover;
    color: #fff;
    font-family: 'Trebuchet MS', sans-serif;
    text-align: center;
}

.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6); /* Abdunkelung für bessere Lesbarkeit */
}

.bebas {
    font-family: 'Bebas', sans-serif;
    font-size: 4rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
    color: #0fffd4;
}

.description {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

#error-display img {
    width: 250px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

#error-display img:hover {
    transform: scale(1.05);
}

.bebas-font {
    font-family: 'Bebas', sans-serif;
    margin-top: 20px;
    letter-spacing: 2px;
    color: #888;
}

footer {
    margin-top: 50px;
    font-size: 0.8rem;
    color: #444;
}