@font-face {
    font-family: customfont;
    /* set name */
    src: url('../fonts/royalty_free.ttf');
    /* url of the font */
}

body {
    color: white;
    font-size: 1em;
    font-family: sans-serif;
    background-color: #111;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 2% 20%;
}

header {
    padding: 1em;
    margin: 1em;
    gap: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    padding: 1em;
    margin: 1em;
}

footer {
    padding-top: 0.1em;
    padding-bottom: 0.1em;
    padding-left: 1em;
    padding-right: 1em;
    margin: 1em;
}

.postForm {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation Links grün leuchtend und ohne Text-Dekoration */
a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 5px yellowgreen, 0 0 5px yellowgreen;
    transition: color 0.2s, text-shadow 0.2s;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px yellowgreen, 0 0 10px yellowgreen;
}

.glassmorphism {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* dezente Umrandung */
    background: rgba(0, 0, 0, 0.3);
    /* transparente weiße Farbe */
    backdrop-filter: blur(50px);
    /* Blur-Effekt */
    -webkit-backdrop-filter: blur(10px);
    /* Safari-Unterstützung */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    /* leichter Schatten */
}

.site-header {
    font-family: customfont, sans-serif;
    text-align: center;
    font-size: 4em;
    /* text-shadow: 0 0 8px yellowgreen, 0 0 5px yellowgreen; */
    font-weight: bold;
    text-shadow: #000 2px 2px 5px;
    margin: 0;
    padding: 0;
}

.post-footer {
    font-size: 0.8em;
    color: #999;
    margin-top: 1em;
    padding-top: 0.5em;
    font-style: italic;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}