/* Stil für den überlagernden Layer */
        .overlay {
            position: absolute;
            width: 10cm;
            min-height: 50px; /* Mindesthöhe des Elements */
        max-height: 2000px; /* Maximale Höhe des Elements */
        overflow-y: auto; /* Zeige einen Scrollbalken, wenn der Inhalt zu groß ist */
        word-wrap: break-word; /* Zeilenumbruch bei langen Wörtern */
            top: 2cm;
            right: 4cm;
            background-color: rgba(255, 255, 255, 0.9); /* Hintergrundfarbe mit Transparenz */
            border: 4px solid #EBEBEB;
            border-radius: 10px;
            padding: 20px;
            display: none; /* Standardmäßig ausgeblendet */
        }
#kfmail {
            width: 500px;
            background-color: white;
            margin: 4px;
            padding: 4px;
            color: #334455;
            border: 1px solid #667788;
            text-align: left;
            }
    
    #kfmail h1.error {
            margin: 4px;
            padding: 0px;
            font-size: 14px;
            color: #a30000;
            }
    
    #kfmail a:link,
    #kfmail a:visited {
            color: #334455;
            text-decoration: none;
            font-weight: bold;
            }
    
    #kfmail a:hover,
    #kfmail a:active {
            color: #a30000;
            }
    
    #kfmail ul.error {
            margin: 0px;
            padding: 0px;
            padding-bottom: 8px;
            padding-left: 22px;
            }
    
    #kfmail li {
            list-style-type:square;
            }
    
    #kfmail h1.ok {
            margin: 4px;
            padding: 0px;
            font-size: 14px;
            color: #20a300;
            }
	.text-box {
    user-select: none;
	}
        /* Hintergrundbild */
        body {
            background-image: url('tierbedarf2.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: top center;
			
        }

        /* Weißer Layer mit 80% Deckkraft */
        .white-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 200%;
            background-color: rgba(255, 255, 255, 0.8);
        }

        /* Textfeld in der Mitte */
		
	
        
        .container {
			user-select: none;
			font-size: 12px;
            font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
            top: 30%;
			max-width: 600px;
			margin: 0 auto; /* Zentriert den Inhalt */
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        .box {
			width: 7cm;
            height: 7cm;
            padding: 3mm;
            background-color: rgba(255, 255, 255, 0.1);
            border: 3mm solid rgba(255, 255, 255, 1);
        }
        @media (max-width: 600px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
    
        
		.text-box #infoLayer p {
}
