html {
    font-family: 'Roboto', sans-serif;
    color: rgba(0,0,0,.87);
}

h1 {
    font-size: 40px;
}

code {
    background-color: #eff2f6;
    padding: 20px !important;
    border-radius: 5px;
}

img {
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .3);
    width: 100%;
}

p, ul {
    line-height: 1.5;
    font-size: 20px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    color: rgba(0,0,0,.87);
    padding: 10px 15px;
    border-style: solid;
    border-width: 2px;
    border-color: rgba(0,0,0,.87);
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
    transition: background-color .5s ease 0s, border-color .5s ease 0s, color .5s ease 0s;
}

.btn:hover {
    background-color: #3682fc;
    border-color: #3682fc;
    color: #FFF;
}

.col-half {
    width: 50%;
}

.footer-icons a {
    position: relative;
    z-index: 2;
    color: inherit;
    text-decoration: none;
    padding-left: 10px;
    padding-right: 10px;
}

.grey {
    background-color: #F8F8F8;
}

.gutters {
    margin: 0 20px 40px;
}

.iphone-image {
    width: 300px;
    display: block;
    margin: auto;
}

.no-padding-top {
    padding-top: 0px !important;
}

.no-shadow {
    box-shadow: none;
}

.pad-sides {
    padding-left: 20px;
    padding-right: 20px;
}

.pad-bottom {
    padding-bottom: 20px;
}

.project-image {
    height: 200px;
    width: 100%;
    background-color: grey;
    border-radius: 10px 10px 0px 0px;
}

.project-thumbnail {
    display: inline-block;
    max-width: 300px;
    height: 350px;
    border-radius: 10px;
    margin: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    transition: transform .5s ease 0s, box-shadow .5s ease 0s;
}

.project-thumbnail:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
}

.project-thumbnail-link {
    text-decoration: none;
    color: inherit;

}

.row {
    display: flex;
    align-items: center;
}

.text-center {
    text-align: center;
}

@media (max-width: 730px) {
    .row {
        flex-wrap: wrap;
    }

    .col-half {
        width: 100%;
    }
}
