
/*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;
}*/

/* HTML5 display-role reset for older browsers */
/*article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}*/
/*body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}*/

/* COMMON STEP STYLES */

.step {
    box-sizing: border-box;
    /*font-family: 'PT Serif', georgia, serif;
    font-size: 48px;
    line-height: 1.5;*/
}

.step {
    transition: opacity 1s;
}

/* fade out inactive slides */
.step:not(.active) {
    opacity: 0.3;
}

.slide {
    display: block;
    min-width: 1280px;
    min-height: 720px;
    padding: 40px 60px;
    border-radius: 20px;
    background-color: white;
    box-shadow: 5px 5px 8px rgba(0, 0, 0, .8) inset;
    /*font-family: 'Open Sans', Arial, sans-serif;*/
    /*color: rgb(102, 102, 102);*/
    /*text-shadow: 0 2px 2px rgba(0, 0, 0, .1);*/
    /*font-size: 30px;*/
    /*line-height: 36px;*/
    /*letter-spacing: -1px;*/
}

body {
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #00A9DD),
        color-stop(1, #002C38)
    );
    background-image: -o-linear-gradient(bottom, #00A9DD 0%, #002C38 100%);
    background-image: -moz-linear-gradient(bottom, #00A9DD 0%, #002C38 100%);
    background-image: -webkit-linear-gradient(bottom, #00A9DD 0%, #002C38 100%);
    background-image: -ms-linear-gradient(bottom, #00A9DD 0%, #002C38 100%);
    background-image: linear-gradient(to bottom, #00A9DD 0%, #002C38 100%);
}

h1 {
    color: hsla(200,100%,40%,1.0);
}

h2 {
    color: hsla(200,60%,40%,1.0);
}

