body {
    background-color: #000;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
    font-family: 'Roboto Mono', monospace;
}

#content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#flaschencode {
    font-size: 128px;
    margin-bottom: 10px;
    overflow: hidden; /* Verhindert, dass der Unterstrich sofort sichtbar ist */
    white-space: nowrap; /* Verhindert Zeilenumbrüche */
    border-right: 2px solid #fff; /* Simuliert den blinkenden Cursor */
    animation: typing 2s steps(20, end), blink-caret 0.5s infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #fff; }
}

#vertrauen {
    font-size: 24px;
    margin-bottom: 20px;
}

#webseiten {
    font-size: 12px;
}

#webseiten a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

/* Styles for Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fefefe;
    padding: 20px;
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}
