@charset "UTF-8";

/* CSS Document */

@media all {
    .produktbeschreibung {
        background: #ffffa0; /* fits the yellow design */
        padding: 12px; /* space inside the box */
        margin: 16px auto; /* space outside the box */
        border: 2px solid #008ad1; /* blue border */
        text-align: center;
        border-radius: 8px; /* soft corners (optional but nice) */
        width: 100%;
        box-sizing: border-box;
    }

    .produktbild {
        background: rgba(255, 237, 0, 0.46); /* same yellow tone as page */
        padding: 18px; /* space around the image */
        margin: 20px auto;
        border: 4px solid #038bd2;
        text-align: center;
        border-radius: 10px;
        width: 90%;
    }

    img {
        max-width: 90%;
        height: auto;
    }

    .faq {
        background: url("faq.png") no-repeat;
        display: inline-block;
        width: 50px;
        height: 50px;
    }

    .faq:hover {
        background: url("faq-hover.png") no-repeat;
    }

    body {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 110%;
        color: #038bd2;
        text-align: center;
        background: #d0eaf6;
    }

    h1 {
        color: #008ad1;
        font-size: 120%;
    }

    .clear {
        clear: both;
    }

    #wrapper {
        width: 60%;
        margin: 0 auto;
        text-align: left;
        background: #ffed00;
        overflow: hidden;
    }

    #inhalt {
        background: #ffffa0;
    }

    #logo {
        background: #ffed00;
        text-align: center;
    }

    #menu {
        text-align: left;
        margin: 1%;
        background: #ffffa0;
    }

    #menu ul {
        padding: 2%;

        list-style: none;
        display: inline;
    }

    #menu ul li {
        display: inline;
        margin: 2%;
    }

    #menu ul li a {
        font-weight: bold;
        padding: 3px 0.5em;
        margin-left: 3px;
        background: #ffd700;
        text-decoration: none;
        color: #008ad1;
    }

    #menu ul li a:hover {
        color: #004d8d;
    }

    #kameras {
        width: 46%;
        float: left;
        color: #008ad1;
        text-align: center;
        background: #ffed00;
    }

    #monitore {
        width: 54%;
        float: right;
        text-align: center;
        color: #008ad1;
        background: #ffed00;
        border-left: 4px solid #ffffa0;
        padding: 10px;
        box-sizing: border-box;
        margin: 0 auto;
    }

    .produktbild {
        background: #ffed00;
        padding: 18px;
        margin: 20px auto;
        border: 4px solid #038bd2;
        border-radius: 10px;
        width: 90%;
        box-sizing: border-box;
        text-align: center;
    }
}
.produktbeschreibung {
    background: #ffffa0;
    padding: 16px; /* mismo padding */
    margin: 16px auto;
    border: 2px solid #008ad1;
    border-radius: 8px;
    width: 90%; /* mismo ancho que .produktbild */
    box-sizing: border-box;
    font-size: 95%;
    text-align: center;
}

img {
    max-width: 91%;
    height: auto;
    display: block;
    margin: 0 auto;
}

#footer {
    margin-top: 5px;
    padding: 0.1% 0;
    background: #ffffa0;
    font-size: 90%;
    text-align: center;
}

@media screen and (max-width: 700px) {
    #menu ul,
    #menu ul li,
    #kameras,
    #monitore {
        display: block;
    }

    #menu {
        text-align: center;
    }

    #kameras,
    #monitore {
        width: 100%;
        text-align: center;
    }
}
