#posts {
    margin: 20px auto;
    max-width: 800px;
    padding: 0 20px;
}

.post {
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.read-more, .green, #acceptButton, #acceptButton2, #menue_button, #menue_button_it {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
    margin-right: 5px;
}

.read-more:hover,.green:hover, #acceptButton:hover, #acceptButton2:hover, #menue_button:hover, #menue_button_it:hover {
    background-color: #218838;
}

.round-edge {
    border-radius: 12px;
}

.height-title-post {
    max-height: min-content;
}

/* Banner-Styling */
#rulesBanner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    z-index: 1000;
    display: none;
    height: 3000px;
    overflow: auto;
    padding-bottom: 6000px;
    backdrop-filter: blur(8px);
}

#rulesBanner h1 {
    margin: 0 0 10px;
    font-size: 24px;
}

#rulesBanner ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

#rulesBanner ul li {
    margin: 5px 0;
    font-size: 18px;
}

/* Input Styling */
#text_input, #round {
    border-radius: 10px;
    border-style: none;
    color: #000;
    padding: 7px;
    width: 100%;
    min-width: 230px;
}

#text_input {
    height: 170px;
}

#logo-font {
    color: #fff;
    font-size: 370%;
    text-decoration: none;
    margin-top: 6px;
}

.material-symbols-outlined {
    margin-bottom: -3px;
}

.userbar_blog {
    display: flex;
    padding: 7px;
}

/* Page darkening behind the banner */
body.banner-active {
    overflow: auto;
}
body {
    margin: 10px;
    padding: 0;
    height: 100vh;
    background-color: #000;

}

/*oben*/
.rain1{
position: fixed;
top: 0px;
z-index: 300;
height: 0%;
width: 100%;
margin-left: -10px;
border: 10px solid transparent;
border-radius: 15px;
animation: rainbow-border 5s linear infinite;
}

/*unten*/

.rain2{
    position: fixed;
    top: 0px;
    z-index: 300;
    height: 0%;
    width: 100%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-radius: 15px;
    animation: rainbow-border 5s linear infinite;
    }
/*links*/
        
    .rain3{
        position: fixed;
        top: 0px;
        z-index: 300;
        height: 0%;
        width: 100%;
        margin-left: 10px;
        border: 10px solid transparent;
        border-radius: 15px;
        animation: rainbow-border 5s linear infinite;
        }
/*rechts*/
                
        .rain4{
            position: fixed;
            top: 0px;
            z-index: 300;
            height: 100%;
            width: 0%;
            margin-left: 98%;
            border: 10px solid transparent;
            border-radius: 15px;
            animation: rainbow-border 5s linear infinite;
            }
            
            @keyframes rainbow-border {
                0% { border-color: red; }
                14% { border-color: orange; }
                28% { border-color: yellow; }
                42% { border-color: green; }
                57% { border-color: blue; }
                71% { border-color: indigo; }
                85% { border-color: violet; }
                100% { border-color: red; }
            }
            