/*
 * General look and fell
 */
body {
    background-color: #fff;
    color: #ccc;

    font: normal 14px/22px Verdana, Geneva, sans-serif;
    -webkit-font-smoothing: antialiased;
}

header {
    text-align: center;
    margin-top: 300px;
    cursor: default;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1 {
    color: #3c3c3c;
    font-weight: 300;
    font-size: 40px;
    line-height: 40px;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 20px;
}

h2 {
    color: #3c3c3c;
    font-weight: 300;
    font-size: 30px;
    line-height: 36px;
    text-transform: capitalize;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 20px;
}

h3 {
    color: #7e7e7e;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    margin-top: 10px;
    margin-bottom: 10px;
}

h4 {
    color: #3c3c3c;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px;
    margin-bottom: 10px;
}

p {
    color: #3c3c3c;
    font-size: 16px;
    line-height: 25px;
    margin: 0 0 10px;
}

a {
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

a:focus {
    outline: 0 none;
}