body {
    margin: 0;
    font-family: 'Raleway', sans-serif; /* Use Raleway font */
	font-size: 115%;
    background-color: lightgrey;
    color: #303030;
	opacity: 1;

}


/*with this images don´t disappear behind the navigation on mobile version*/
@media (max-width: 768px) {

    body {
        padding-top: 90px; /* Adjust padding for mobile if needed */
    }

}



.header-content {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-image {
    text-align: center;
	flex-wrap: wrap; /* Allow wrapping for mobile */
}

.header-image img {
    width: 100%;
    height: auto; /* Responsive image */
}

.content {
    margin-top: 40px; /* Space for fixed header */
    text-align: center;
    padding: 0px; /*No border around content-box*/
	
}

.container {
    display: flex;
    justify-content: center;
    width: 85%;
    margin: 0 auto;
    flex-wrap: wrap; /* Allow wrapping for mobile */
}


.box {
    background-color: white;
    border: 1px solid #ccc;
    margin: 10px;
    padding: 20px;
    flex: 1;
    min-width: 300px; /* Minimum width for responsiveness */
	text-align: justify;
	hyphens: auto;
	word-break: break-word;
	box-sizing: border-box; /* Include padding in height/width calculations */	

}


.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border: none;
    cursor: pointer;
    display: none; /* Initially hidden */
    background: transparent; /* Make background transparent */
}

.back-to-top img {
    width: 50px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
}

footer {
    text-align: center;
	vertical-align: center;
	padding-top: 5px;
    margin-top: 20px;
	height: 60px;
	background-color: darkgrey;
}


.full-width-image {
    width: 100%; /* Set the container to full width */
    overflow: hidden; /* Prevent overflow */
}

.full-width-image img {
    width: 100%; /* Make the image take the full width of the container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove bottom space/gap */
}

/*with this, certain containers are not displayed on mobile devices*/
.hide-on-mobile {

    display: block; /* Default display for larger screens */

}

.buttonsnormal {
	font-size: 100%;
	height: 30px;
	width: 195px;
	border:none;
	border-radius: 5px;
	background-color: yellowgreen;
	color: #FFF;
	font-weight: bold;
	text-transform: uppercase;
}

.buttonsnormal:hover /* Eigenschaften beim Überfahren mit der Maus */
    {
    background-color:#3AD50C;/* Neue Farbe */
    }

.auswahlfeld {
	height: 30px;
	width: 15em;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	margin:3px;
}

.thumbnail {

    width: 100px; /* Thumbnail size */

    cursor: pointer;

    transition: transform 0.2s;

}


.thumbnail:hover {

    transform: scale(1.05); /* Slightly enlarge on hover */

}


.overlay {

    display: none; /* Hide by default */

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */

    justify-content: center;

    align-items: center;

}


.overlay img {

    max-width: 150%; /* Zoomed image size */

    max-height: 150%; /* Zoomed image size */

    border: 5px solid white; /* Optional: border for the zoomed image */

}

@media (max-width: 768px) {

    .hide-on-mobile {

        display: none; /* Hide on mobile devices */

    }

}

/* Container not visible on desktop screens */

.mobile-container {

    display: none; /* Initially hide the container */

}


/* Show the container on mobile devices */

@media (max-width: 768px) {

    .mobile-container {

        display: block; /* Show the container on mobile */

    }

}
  .large-input {

    width: 250px;

    height: 45px;

    font-size: 20px;       /* larger font size */

    padding: 8px 12px;     /* more inner spacing */

  }