/*--------------------------------------------------------------------------------------------------------------------------*/
/*- RESET - Courtesy of Eric Meyer's CSS Reset Awesomeness: http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ ---*/
/*--------------------------------------------------------------------------------------------------------------------------*/
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;
}

/* My styles */
body {
    background: #f9f9f9;
}

header {
    margin: auto;
}

h1 {
    margin-top: 30px;
    font-family: "museo-sans";
    font-weight: 100;
    font-style: normal;
    text-align: center;
    font-size: 60px;
}

h1 span {
    font-weight: 300;
}

p {
    font-family: "museo-sans";
    font-weight: 100;
    font-style: normal;
    text-align: center;
}

#links {
    margin: auto;
}
    
    ul {
        margin-left: 130px;
    }

        li {
            height: 95px;
            font-family: "ff-enzo-web";
            font-weight: 300;
            font-style: normal;
        }

        li a {
            font-size: 45px;
            text-decoration: none;
            color: #9c1616;
        }

        li a:hover {
            color: #e45f5f;
        }

        li a:active {
            color: pink;
        }

        li .link {
            padding: 10px 0 10px 0;
        }

    #links .icon {
        height: 75px;
        width: 75px;
        background: url(icons.png) top no-repeat;
        float: left;
        margin-right: 10px;

        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;

        -webkit-box-shadow: 0 8px 6px -6px rgba(0,0,0,0.68);
        -moz-box-shadow: 0 8px 6px -6px rgba(0,0,0,0.68);
        box-shadow: 0 8px 6px -6px rgba(0,0,0,0.68);
    }

        #twitter .icon {
            background-position: 1px 0px;
        }

        #flickr .icon {
            background-position: -74px 0px;
        }

        #ilovedonairs .icon {
            background-position: -153px 0px;
        }

        #prague .icon {
            background-position: -228px 0px;
        }


    .blurb {
        position: relative;
        margin-left: 89px;
        font-size: 17px;
    }

    #email .blurb {
        margin-left: 0;
    }

    #email a {
        font-size: 17px;
    }

@media screen and (min-width:800px) {
    header {
        width: 800px;
        height: 250px;
    }

        h1 {
            font-size: 60px;
        }

        p {
            font-size: 25px;
            margin-top: 20px;
        }

    #links {
        width: 800px;
    }
}

@media screen and (min-width:600px) and (max-width:799px) {
    header {
        width: 600px;
        height: 188px;
    }

        h1 {
            font-size: 45px;
        }

        p {
            font-size: 19px;
            margin-top: 15px;
        }

    #links {
        width: 600px;
    }
}

@media screen and (max-width:599px) {
    header {
        width: 400px;
        height: 125px;
    }

        h1 {
            font-size: 30px;
        }

        p {
            font-size: 18px;
            margin-top: 10px;
        }

    #links {
        width: 400px;
    }

        ul {
            margin-left: 25px;
        }

        #links .icon {
            height: 60px;
            width: 60px;
            background: url(iconssmall.png) top no-repeat;
        }

        #twitter .icon {
            background-position: 1px 0px;
        }

        #flickr .icon {
            background-position: -59px 0px;
        }

        #ilovedonairs .icon {
            background-position: -121px 0px;
        }

        #prague .icon {
            background-position: -182px 0px;
        }
        
        li a {
            font-size: 36px;
        }

        .blurb {
            margin-left: 72px;
            font-size: 15px;
        }
}
