/* Reset styles */
/*-------------------------------------------------*/
*
{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* Basic styles */
/*-------------------------------------------------*/
body 
{
	background-color: #FCF7F8;
	background-size: cover;
	font-family: Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	height:100%;
}

#content-layout
{
    display: flex; /* Use Flexbox for the parent container */
    justify-content: space-between;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 40%;
    border-bottom: 1px solid #6c1036;
}

.header-banner {
    width: 100%;
    max-height: 35%;
    background-color: #637954;
}

.imgbox {
    display: flex;
    height: 100%;
}

.imgbox #banner {
    max-width: 100%;
    max-height: 20vh;
    height: auto;
    margin: auto;
}


main 
{
	max-width: 100%;
	margin: 0 auto;
	padding: 1%;
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
    align-items: center;
    color: black;
    text-align: center;
}

.impressum
{
    text-align: left;
}

.main-content #welcome-text {
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    padding: 20px;
    margin: 10px;
  }

#email-information {
    padding: 10px; /* Innenabstand */
    border: 1px solid #ccc; /* Rahmen */
    margin-top: 15px; /* Abstand nach oben */
}

#email-information ul {
    padding: 10px; /* Innenabstand für die Liste entfernen */
}

#email-information li {
    margin-bottom: 8px; /* Abstand zwischen den Listenelementen */
}

#insta-information {
    display: flex; /* Flexbox verwenden */
    align-items: center; /* Zentriert die Elemente vertikal */
}

#instagram-link {
    margin-left: 10px;
    margin-right: auto;
    margin-top: 10px;
}

#instagram-logo {
    max-width: 100px; /* Adjust the width as needed */
    max-height: 35px; /* Adjust the height as needed */
}

/* Footer styles */
/*-------------------------------------------------*/
footer 
{
    background-color: #6c1036;
    padding: 1%;
    text-align: left;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    text-decoration: none;
    color: white;
}