body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    flex-direction: column;
}
.bg-black {
    background: black;
    color: white;
}
.ascii-art {
    font-family: monospace;
    white-space: pre-wrap;
    line-height: 1.2;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    display: flex;
    justify-content: center;
}

@media (max-width: 600px) {
    .ascii-art {
        font-size: calc(0.6vw + 0.6vh);
    }
}
.clickable {
    cursor: pointer;
}
a {
    text-decoration: none;
    color: inherit;
}

a.hoverable:hover {
    text-decoration: underline;
}
/* Logo Container */
.logo-container {
    max-width: 100%;
    width: 100%;
}

/* Logo Bild responsiv */
.logo-container img {
    width: 100%;
    height: auto;
    /* Optional: Füge eine maximale Breite hinzu, falls du die Größe des Logos begrenzen möchtest */
    max-width: 700px;
}
/* Text-Animation */
.zoom-text {
    font-family: Verdana, Geneva, Tahoma, sans-serif, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 1s ease-in-out forwards;
}
@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hitcounter */
.hit-counter {
    margin-top: 40px;
}

/* Guestbook home */
.guestbookLinkWrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

/* Guestbook add entry */
body.guestbookAdd .logo-container,
body.guestbook .logo-container {
    display: flex;
    justify-content: center;
}

body.guestbookAdd {
    width: 75%;
    flex-direction: column;
}

.guestbookAdd form {
    width: 25%;
}

.guestbookAdd input {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 5px;
}

.guestbookAdd textarea {
    width: 100%;
    min-height: 100px;
    margin-top: 5px;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    z-index: -1;
    pointer-events: none;
}

/* Guestbook */
body.guestbook {
    align-items: flex-start;
    width: 75%;
    flex-direction: column;
    justify-content: normal;
}

body.guestbook.bg-black {
    justify-content: normal;
}

.guestbookEntries {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guestbook-entry {
    margin: 10px 0;
    padding: 15px;
    width: 50%;
}

.entry-header {
    margin-bottom: 10px;
    color: #666;
    font-size: 0.9em;
}

.bg-black .entry-header {
    margin-bottom: 10px;
    color: #d0d0d0;
    font-size: 0.9em;
}

.entry-name {
    margin-right: 20px;
}

.entry-message {
    line-height: 1.4;
}
