
.textbox-container {
    position: relative;
    top: 10%;
    width: calc(100% - 220px); /* Breite der Textbox, Abzüglich des linken und rechten Abstands */
    max-width: 1000px; /* Maximale Breite der Textbox */
    margin-left: auto; /* Zentriert die Textbox horizontal */
    margin-right: auto;
    background-color: rgba(255, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
	margin-bottom: 60px; /* Add some space between the textbox container and the footer */
}


@media screen and (min-width: 768px) {
    .textbox-container {
        width: calc(100% - 80px); /* Anpassung der Breite auf größeren Bildschirmen */
        max-width: 800px;}

    }
    @media screen and (min-width: 350px) {
        .textbox-container {
            width: calc(100% - 120px); /* Anpassung der Breite auf größeren Bildschirmen */
            max-width: 300px;}
    
        }

    @media screen and (min-width: 1200px) {
    .textbox-container {
        width: calc(100% - 50px); /* Anpassung der Breite auf noch größeren Bildschirmen */
        max-width: 800px;}

    }


h1 {
    margin-top: 0;
    text-align: center;
}

.para {
    font-size: 15px;
}