/* Alle Überschriften h1-h6 */
h1,h2,h3,h4,h5,h6 {
    color: #8918a5;
    font-family: 'Comic Sans', cursive;
    font-size: 50pt;
    font-weight: bold;
    text-decoration: underline
}

a:link { 
    color: #a01355;
}

a:visited { 
    color: #be3896;
}

a:hover { 
    color: #fafcae; 
}

body {
  background-color: rgb(224, 160, 236, 1);
}

/* Alles in einer bestimmten Klasse */
.cls {
    background-color: #fafcae;
}

.spam {
    line-height: 20pt;
    color: rgb(61, 31, 94);
    letter-spacing: 20px;
    word-spacing: -30px
}

/* Ein bestimmtes Element */
#ident {
    border-style: solid;
    border-width: 2px;
    border-color: #333333;
}

/* Normale Absätze/Paragrafen */
p {
    font-size: 0.9em;
}

/* Den gesamten Text */
* {
    font-family: 'Courier New', monospace;
    font-size: 25pt;
    text-align: center;
    line-height: normal;
}