body{
  	display: flex;
  	flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: #aa928f;
}
h3{
    text-align: left;
}
h1{
    text-align: center;
    margin-left: 250px;
    position: relative;
    top: 50px;

}
img{
    max-width: 600px;
    max-height: 600px;
    margin: 10px;
    height: auto;
    display: block;
    transition: transform 0.2s ease;
}
a{
    text-decoration: none;
    color: #18181b;
}
.img-magnifier-container {
    position: relative;
    flex: 1;
}

.img-magnifier-glass {
    position: absolute;
    border: 3px solid #000;
    border-radius: 50%;
    cursor: none;
    /* Set the size of the magnifier glass: */
    width: 100px;
    height: 100px;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease;
}

.img-magnifier-glass.visible {
    opacity: 1; /* Show when hovered */
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.text-content {
    flex: 1;
}
.button {
    background-color: #18181b; /* Orange Farbe */
    color: white;
    padding: 15px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

header {
    background-color: #aa928f;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #18181b;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
  	height: 100px;
  	display: flex;
}

.menu-icon {
    cursor: pointer;
    font-size: 24px;
    margin: 0 10px;
    color: #18181b;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    top: 100%; /* Position the dropdown menu directly below the header */
    left: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    padding: 8px 16px;
    cursor: pointer;
  	border-bottom: 1px solid #f2f2f2;
} 

dropdown-menu li:hover {
    background-color: black;
}
.dropdown-menu li:hover a {
    color: white;
}
.dropdown-menu a {
    text-decoration: none;
    color: black;
}

.logo img {
    height: auto;
    width: 200px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.header-icons {
    display: flex;
    align-items: center;
}

.header-icons .kontakt-icon,
.header-icons .cart-icon {
    margin-left: 20px;
    cursor: pointer;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.contact-icons a {
    color: #333;
    font-size: 2em;
    text-decoration: none;
}

.contact-icons a:hover {
    color: #555;
}

footer {
    background-color: #aa928f;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    color: white;
}

footer a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
}

footer a:hover {
    text-decoration: underline;
}

.mdl-mini-footer__left-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mdl-mini-footer__link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mdl-mini-footer__link-list li {
    margin: 5px 0;
}