/* CSS-Datei style.css */

.bild150px {
    padding: 0px 0em;
    max-width: 30%;
    height: 150px;
}

.button {
    display: inline;
    background-color: rgb(0, 50, 0);
    color: white;
    text-decoration: none;
    margin: inherit;
    z-index: 1000;
}

.iqLogo{
max-width: 100%;
height: auto;
display: block;
margin: auto;
}

body {
    background-color: rgb(0, 50, 0);
}

nav { 
    background-color: rgb(0, 50, 0);
    font-family: monospace, arial;
    color: white;
    font-size: 2em;
    text-align: center;
}

section {
    background-color: rgb(0, 50, 0);
    font-family: monospace, arial;
    color: white;
    font-size: 2em;
    text-align: center;
}

footer {
    background-color: rgb(0, 50, 0);
    font-family: monospace, arial;
    color: whitesmoke;
    font-size: 1em;
    text-align: center;
    padding: 0em;
    
a:link {
  color: white;
  text-decoration: underline; /* Unterstreichung optional entfernen */
}
a:hover {
  color: yellow;
  text-decoration: underline; /* Unterstreichung beim Hover */
}
a:visited {
  color: white;
}
a:active {
  color: aqua;
}    
}

<style>
details { background-color: yellow; }
details details { background-color: limegreen; margin-left: 1em; }
</style>

a:link {
  color: white;
  text-decoration: none; /* Unterstreichung optional entfernen */
}

a:hover {
  color: yellow;
  text-decoration: underline; /* Unterstreichung beim Hover */
}

a:visited {
  color: white;
}

a:active {
  color: aqua;
}
