
.textbox-container {
   position: relative;
    top: 10%;
    width: calc(100% - 220px);
    max-width: 1000px; 
    margin-left: auto; 
    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;
}


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


.textbox-container {
    max-width: 1000px; 
}
    
  @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;}

    }