@charset "utf-8";
/* CSS Document */

body {
background-color:#F1DCC8;
background-image:url(../bilder/hintergrund-schreibstube.jpg);
background-repeat:no-repeat;
background-position:center top;
}

/* Die Seite ist insgesamt 900 hoch und 1000 px breit */

#seite {
width: 1000px;
height: 900px;
/* position relative, da sonst andere absolute Container (extra) NICHT daran orientieren würden */
position:relative; top:0px; left:0px;
/* zentrieren des div auf die Seitenmitt: */
margin: 0 auto;
/* background-color:#7C4AA8;
background-image:url(../bilder/micha-schreibstube.jpg); */
font: normal 20px verdana, sans-serif;
color:#FFCC00;
}

#oben {
width: 1000px;
height: 300px;
/* background-color:#98AA00; */
float: left;
}

#links {
width: 700px;
height: 600px;
/* background-color:#98AA00; */
float: left;
}

#rechts {
width: 300px;
height: 600px;
/* background-color:#98AA00; */
float: left;
}

a:link {
color:#FF3300;
text-decoration: none;
}

a:active {
color:#FFF;
text-decoration: none;
}

a:visited {
color:#FF9900;
text-decoration: none;
}

a:hover {
color:#FFFF66;
text-decoration:none;
}

/* Neonfarbe für den Text in einer Class */

.neon {
    font-family: sans-serif;
    text-transform: uppercase;
    font-size: 40px;
    font-weight: bold;
    font-style: italic;
    letter-spacing: .1em;
    color: red;
    text-shadow: 0 0 5px red,
                 0 0 10px red,
                 0 0 20px red,
                 0 0 40px red,
                 0 0 60px red,
                 0 0 90px red,
                 0 0 120px red,
                 0 0 160px red;
}