html {
    overflow-y:scroll; /* Forces a scrollbar when the viewport is larger than the websites content - CSS3 */
}

body {
    margin:0; 
    padding:0; 
    font-size:14px; 
    font-family: Georgia, "Times New Roman", Times, serif; 
    color:#777; 
    background-color:#ffffff;
}

h1, h2, h3 {
    font-family: Varela Round, arial, sans-serif;
    color: #444;
    font-weight: normal;
    font-style: normal;
    line-height: 1.4em;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
}
h1 {
    font-size: 20px;
}

.app-container {
    width: 1000px;
    max-width: 80%;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

p {
    margin-top: 0;
    line-height: 1.6em;
}

a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
