@charset "UTF-8";

/* CSS Document */

/* Standard-Stile für die gesamte Seite */
@media all {

    body {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 120%;
        color: #038BD2;
        text-align: center;
        background: #D0EAF6;
        margin: 0;
        padding: 0;
    }

    h1 {
        font-size: 120%;
    }

    /* Logo-Bereich */
    #logo {
        background: #FFED00;
        padding: 20px;
    }

    /* Navigation */
    #topmenu {
        background: #ffffa0;
        padding: 10px 0;
    }

    #topmenu ul {
        margin: 2% 0;
        padding: 0;
        list-style: none;
        text-align: center;
    }

    #topmenu li {
        display: inline;
        margin: 0 15px;
    }

    #topmenu a {
        height: 56px;
        padding: 10px 20px;
        letter-spacing: 1px;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 80%;
        font-weight: bold;
        border: none;
        color: #008AD1;
    }

    #topmenu a:hover {
        color: #004d8d;
    }

    /* Hauptcontainer */
    #alles {
        width: 75%;
        margin: 0 auto;
        text-align: left;
        background: #ffffa0;
        overflow: hidden;
        padding: 20px;
    }

    /* Produkte-Container */
    #produkte {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        padding: 20px;
        background: #FFED00;
    }

    /* Einzelne Produktartikel */
    #computer,
    #kameras {
        width: 45%;
        padding: 20px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    /* Produktbeschreibung */
    .produktbeschreibung {
        width: 90%;
        margin: 10px auto;
        padding: 10px;
        border: 1px solid #008AD1;
        background-color: #D0EAF6;
        text-align: center;
        border-radius: 5px;
    }

    /* Produktbilder */
    .produktbild img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 5px;
    }

    /* Angebote-Bereich */
    #angebote {
        display: flex;
        justify-content: space-between;
        padding: 20px;
    }

    #aktionen,
    #news {
        width: 48%;
        padding: 20px;
        background: #EEB422;
        text-align: center;
        border-radius: 10px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Footer */
    footer {
        font-size: 90%;
        padding: 10px;
        background: #ffffa0;
        text-align: center;
    }
}

/* Responsive Design für kleinere Bildschirme */
@media screen and (max-width: 700px) {

    /* Reduziert die Breite von Produkten */
    #produkte {
        flex-direction: column;
        align-items: center;
    }

    #computer,
    #kameras {
        width: 90%;
        margin-bottom: 20px;
    }

    /* Verkleinert die Bilder auf kleinen Bildschirmen */
    .produktbild img {
        width: 80%;
    }

    /* Stellt sicher, dass die Navigation gut aussieht */
    #topmenu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #topmenu li {
        display: block;
        margin-bottom: 10px;
    }

    /* Angebote-Bereich untereinander statt nebeneinander */
    #angebote {
        flex-direction: column;
        align-items: center;
    }

    #aktionen,
    #news {
        width: 90%;
        margin-bottom: 20px;
    }
}
