/* Body */
html, body {
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    background-color: #FFF;
}

/* Layout */
article, footer {
    padding: 50px 0;
}
.container {
    max-width: 920px;
}

/* General */
h1 {
    text-transform: uppercase;
    font-size: 110px;
}
h2 {
    font-size: 50px;
    text-align: center;
}
h3 {
    font-size: 35px;
}
ul{
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
.subtitle {
    text-align: center;
    font-size: 25px;
}
@media only screen and (max-width: 767px) {
    h1 {
        font-size: 80px;
    }
}
/* Header Section */
header {
    padding: 85px 0;
}

/* Contact Section */
#contact {
    background-color: #333;
    color: #F2F2F2;
}
.contact-link {
    color: #F2F2F2;
    text-decoration: none;
    line-height: 32px;
}
.contact-link:hover {
    color: #F2F2F2;
    text-decoration: none;
}
.contact-icon-square {
    position: relative;
    background-color: #F2F2F2;
    width: 32px;
    height: 32px;
    border-radius: 3px;
    margin-right: 5px;
    float: left;
}
.contact-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
    .contact-link {
        margin-bottom: 20px;
        display: block;
    }
}
