﻿body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    /*background-color: #F3F4F6;*/
    color: #02040A;
}

h1 {
    margin-bottom: 10px;
    font-size: 42px;
}

.auto-scale 
{
    display: flex;
    justify-content: center; /* Bild mittig */
    align-items: center; /* falls das Bild kleiner ist */
}

.auto-scale img {
    height: 200px; /* feste Höhe */
    width: auto; /* proportional */
    object-fit: contain; /* Bild wird nicht beschnitten */
}


.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    border: 1px solid #ccc;
    /*border-radius: 4px;*/
    background-color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 100%;
}

.dropdown-item {
    color: #14b8a6 !important;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    cursor: pointer;
}

.dropdown-item:hover, .dropdown-item:hover a {
    background-color: #14b8a6 !important;
    color: #FFF !important;
    cursor: pointer;
    }
.dropdown-item a {
    color: #FFF !important;
    }
