body {
    color: #fff;
    font: 400 20px Roboto, sans-serif;

    background-color: #777;
}

a:link {
    color: lightgray; text-decoration: none;
}

a:active {
    color: #fff; text-decoration: none;
}

a:visited {
    color: lightgray; text-decoration: none;
}

a:hover {
    color: #fff; text-decoration: underline;
}

.text-thin {
    font-weight: 100;
}

.text-thick {
    font-weight: 700;
}

/*Override each of the h sizes so we can have a site-wide consistent header->category format*/
h1 {
    font: 700 60px Roboto, sans-serif;
}

h2 {
    font: 700 30px 'Roboto Mono', sans-serif;
}

h3 {
    font: 400 25px Roboto, sans-serif;
}

h4 {
    font: 300 25px 'Roboto Mono', sans-serif;
}

nav a,
button {
    /*make sure that buttons are big enough to press*/
    min-width: 48px;
    min-height: 48px;
}

img,
embed,
object,
video {
    /*Make sure images don't overflow their containers*/
    max-width: 100%;
}

.title-logo {
    margin-top: 20px;
    margin-left: -20px;  /*This is to compensate for margin in the image file*/
    max-height: 150px;
    max-width: none;
}

.title-text {
    margin-top: 60px;
    text-align: right;
    text-transform: uppercase;
}

.title-contact {
    font: 700 18px Roboto, sans-serif;;
}

.title-mail {
    font: 300 18px 'Roboto Mono', sans-serif;
}

@media screen and (max-width: 991px) {
    .title-logo {
        margin-left: 0;
        margin-top: 50px;
    }

    body {
        font-size: 12px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 15px;
    }

    h3 {
        font-size: 15px;
    }

    h4 {
        font-size: 15px;
    }
}

@media screen and (max-width: 767px) {
    .title-logo {
        display: block;
        margin: 0 auto;
    }

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

    .title-text {
        margin-top: 30px;
    }
}

@media screen and (max-width: 356px) {
    .title-contact {
        font-size: 15px;
    }

    .title-mail {
        font-size: 15px;
    }
}

.project {
    text-align: center;
}

.project .img-responsive {
    margin: 0 auto;
}
