/*

clean-up all style - from  Eric Meyer http://meyerweb.com/eric/tools/css/reset/ 

*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    color: white;
}


/*
    Now let's bring some text styles back ...
*/
strong { font-weight: bold }
b {
    font-weight: bold;
    color: red;
}
i, em { font-style: italic }

sup { vertical-align: super; }
sub { vertical-align: -35%;   }
tt { font-family: monospace; }
/*
    ... and give links a nice look.
*/
a {
    color: inherit;
    text-decoration: none;
    padding: 0 0.1em;
    background: rgba(255,255,255,0.5);
    text-shadow: -1px -1px 2px rgba(100,100,100,0.9);
    border-radius: 0.2em;
    
    -webkit-transition: 0.5s;
    -moz-transition:    0.5s;
    -ms-transition:     0.5s;
    -o-transition:      0.5s;
    transition:         0.5s;
}

a:hover,
a:focus {
    background: rgba(255,255,255,1);
    text-shadow: -1px -1px 2px rgba(100,100,100,0.5);
}

ul {
    list-style-type: none;
    list-style-image: url('../img/rstar.png');
    text-align: left;
    margin:
}


body {
    font-family: 'PT Sans', sans-serif;
    min-height: 740px;
    
    background: rgb(0, 0, 0);
    background: -webkit-radial-gradient(rgb(0, 0, 0), rgb(50, 50, 50));
    background:    -moz-radial-gradient(rgb(0, 0, 0), rgb(50, 50, 50));
    background:     -ms-radial-gradient(rgb(0, 0, 0), rgb(50, 50, 50));
    background:      -o-radial-gradient(rgb(0, 0, 0), rgb(50, 50, 50));
    background:         radial-gradient(rgb(0, 0, 0), rgb(50, 50, 50));    
}


/* 

main boring slides 

*/
.boring {
    width: 1000px;
    font-size: 80px;
    text-align: center;

}

.code {
    font-size: 40px;
    text-align: left;
    float: left;
    font-style: normal;
    font-family: monospace;
}

.guess {
    width: 900px;
    font-size: 60px;
    text-align: left;
    float: left;
    font-style: italic;
}

.longguess {
    width: 950px;
    font-size: 50px;
    text-align: left;
    float: left;
    font-style: italic;
}

.quote {
    width: 800px;
    font-size: 70px;
    text-align: right;
    font-style: italic;
    float: right;
}

.footnote {
    font-size: 32px;
}

small {
    font-size: 35px;
}

.center {
    text-align: center;
}


/*

The small print in the footer

*/

.footer {
    font-size: 14px;
    position: static;
    float: right;
}

.small {
    font-size: 55px;
}

.left {
    text-align: left;
    float: left;
}

ul.left {
    list-style-type: disc;
}
