/* CSS Document */

/* Her beskrives font-typene, størrelse osv på vanlig tekst */
body {
        font-family: Arial, Helvetica, Verdana, sans-serif;
        color: #80E0A0;
        font-size: 16px;
        margin-top: 0;
        line-height: 2ex;
        background-image: url(http://www.astrofestival.no/bilder/Bakgrunn.jpg);
}

/* Liten og stor kan nås med å bruke <span class="liten/stor"></span> (husk " tegnene) */

.littmindre {font-size: 14px}
.liten {font-size: 12px}
.stor {font-size: 20px}
.prisutdeling {
	font-family: Times New Roman, Helvetica, Verdana, sans-serif;
}

/* De tre overskriftene jeg har brukt beskrives her */

h1 {
        font-size: 20px;
        font-weight: bold;
}

h2 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 0px;
        margin-top: 1ex;
        line-height: 4ex;
}

h3 {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 0px;
        margin-top: 1ex;
        line-height: 4ex;
}

p, ol, ul, dl {
        font-size: 16px;
        margin-top: 0;
        line-height: 2ex;
}

p ol, p ul, p dl, ol ul {
        font-size: 16px;
        margin-top: 0;
        line-height: 2ex;
}

/* Her beskrives utseende på linker */

a:link {
        color: blue;
        text-decoration: none;
}

a:visited {
        color: purple;
        text-decoration: none;
}

a:hover {
        color: purple;
        text-decoration: underline;
}