@font-face {
    font-family: 'Raleway Regular';
    src: local('Raleway'),
         local('Raleway Regular'),
         local('Raleway-Regular'),
           url('../fonts/Raleway-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Raleway Regular', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
}

.container-fluid {
    padding-right: 0;
    padding-left: 0;
}

a, strong {
    color: #ea6a3d;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #ea6a3d;
    text-decoration: underline;
}

h1{
    margin-bottom: 0.5rem;
    font-family: inherit;
    font-weight: 700;
    line-height: 1.2;
    color: inherit;
}

.intro-img {
    height: 100%;
    background: url("../img/coding.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left bottom;
}

#logo {
    width: 21.875rem;
    height: auto;
    margin-left: 14%;
}

h1, p, social {
    text-align: center !important;
}

.credit {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: #000;
}

.social {
    text-align: left;
    margin-top: 40px;
}

.social a {
    margin: 0 10px 0 0;
    color: #333;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    line-height: 40px;
    font-size: 13px;
    text-align: center;
    transition: all 0.2s ease-out;
    border: solid 1px #333;
}

.social a i {
    vertical-align: bottom;
    line-height: 40px;
}

.social a:hover {
    color: #ffffff;
    background-color: #ea6a3d;
    border-color: #ea6a3d;
}

.text-uppercase {
  letter-spacing: 0.2em !important;
}

@media (max-width: 768px) {
    .container-fluid {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
    }

    #logo {
        width: 100%;
        height: auto;
        margin-left: auto;
    }

    h1 {
        font-size: 1.5rem;
    }

}