

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #474747;
    margin: 0;
    padding: 0;
    font-size: 14pt;
}

.header {
    padding: 3em 0;
    text-align: center;
    background: url('../medien/web-banner.svg') no-repeat center center;
    background-size: cover;
    margin-bottom: 1rem;
}

.logo-img {
    max-width: 400px;
    height: auto;
    margin-bottom: 1rem;
}

.menu {
    margin-top: 1em;
    font-size: 1.1em;
    color: white;
}

.menu a {
    color: white;
    text-decoration: none;
    margin: 0 0.5em;
}

.content {
    max-width: 950px;
    margin: 0 auto;
    padding: 2em;
}

.intro, .products, .additional {
    margin-bottom: 3em;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    max-width: 1180px;
    margin: auto;
    margin-top: 3rem;
    grid-gap: 10px;
}

.product {
    grid-column: span 6;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid #ccc;
    padding: 1em;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.product img {
    grid-column: span 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-right: 1em;
}
.product h3 {
    font-size: 14pt;
    color: #888888;
}
.product p {
    font-size: 12pt;
}

.product-info {
    flex: 1;
}

.button {
    border: 0;
    font-family: roboto;
    font-size: 1.2rem;
    display: inline-block;
    padding: 0.75em 0.8em;
    background: #E92E86;
    background: linear-gradient(42deg, rgba(233, 46, 134, 1) 0%, rgba(217, 163, 46, 1) 75%);
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
}
main {
    hyphens: auto;
}
main a.button:hover, button:hover{
    background: #D9A32E;
    background: linear-gradient(42deg, rgba(217, 163, 46, 1) 0%, rgba(233, 46, 134, 1) 73%)!important;
}
h1, h2 {
    margin-bottom: -10px;
    /*font-family: "Miniver", cursive;*/
    font-size: 20pt;
    color: #888888;
}

p{
    line-height: 1.6rem;
}
a {
   color: #9c27b0;
}
.danke {
    font-size: 1.2rem;
    color: #2e7d32;
    background-color: #e8f5e9;
    padding: 1em;
    border-radius: 8px;
}
input[type="text"], textarea, input[type="email"] {
    width: 100%;
    font-family: roboto;
    font-size: 1rem;
    padding: 8px;
    margin: 0.6rem 0;
}
textarea#nachricht {
    height: 220px;
}
.sprachwahl {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  z-index: 999;
  padding: 0 10px;
  background: #00000057;
    border-radius: 8px;
}

.flagge {
  width: 60px;
  height: auto;
  display: block;
  transition: transform 0.2s ease;
}

.flagge:hover img,
.flagge:active img {
  transform: scale(0.95);
}

.flagge img {
  width: 100%;
  height: auto;
  display: block;
}

p.affiliate-note{
    font-size: 12pt;
    color: lightgray;
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .product {
        flex-direction: column;
        align-items: center;
    }

    .product img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1em;
    }
    .product h3 {
        font-size: inherit;
    }
    .product p {
        font-size: inherit;
    }

    .product-info {
        /*text-align: center;*/
    }
}
@media (max-width:575px){
    .product {
        grid-template-columns: repeat(1, 1fr);
    }
    .product img {
        max-height: 220px;
        object-fit: contain;
    }
}
@media (max-width:500px){
    .sprachwahl{
        position: inherit;
        display:flex;
        flex-flow: wrap;
        border-radius: 0;
        background: white;
        justify-content: space-between;
    }
}
@media (max-width: 400px) {
    .logo-img{
        width: 90%;
    }
}