@charset "UTF-8";

/* ===== Allgemein ===== */

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

#alles {
    width: 75%;
    margin: 0 auto;
    text-align: left;
    background: #ffffa0;
    overflow: hidden;
}

/* ===== Logo ===== */

#logo {
    background: #FFED00;
    text-align: center;
    padding: 10px 0;
}

/* Flüssige Bilder */
img {
    max-width: 100%;
    height: auto;
}

/* ===== Navigation ===== */

#topmenu {
    background: #ffffa0;
}

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

#topmenu li {
    display: inline;
}

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

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

/* Aktiver Menüpunkt */
#topmenu a.aktiv {
    border-bottom: 3px solid #004d8d;
}

/* ===== Überschriften formatierbar über Klasse ===== */

.headline {
    font-size: 120%;
    padding: 10px;
}

/* ===== Layout ===== */

#produkte {
    width: 65%;
    float: left;
}

#angebote {
    width: 35%;
    float: left;
}

#computer,
#aktionen {
    background: #FFED00;
    color: #008AD1;
}

#kameras,
#news {
    background: #008AD1;
    color: #FFED00;
}

#computer {
    width: 40%;
    float: left;
}

#kameras {
    width: 60%;
    float: left;
}

#aktionen {
    width: 60%;
    float: left;
}

#news {
    width: 40%;
    float: left;
}

/* ===== Footer ===== */

#footer {
    clear: both;
    font-size: 90%;
    padding: 10px 0;
    background: #ffffa0;
    text-align: center;
}

/* ===== Responsive ===== */

@media screen and (max-width: 700px) {

    #produkte,
    #angebote,
    #computer,
    #kameras,
    #aktionen,
    #news {
        display: block;
        float: none;
        width: 100%;
    }

    #topmenu li {
        display: block;
    }
}