body{
    font-family: 'Source Sans', sans-serif;
}

.navbar{
    background-color: #ffffff;
}

.navbar-brand img{
    width: 12rem;
}

.nav-link:hover{
    color: #0855b1;
}

#home a{
    border:2px solid #ffffff;
    color: #ffffff;
}

#home a:hover{
    background-color: #ffffff;
    color: #121212;
}

.section-header{
    font-size: 2.3rem;
    letter-spacing: 5px;
    text-shadow: 33px 17px 0px rgba(0,0,0,0.1);
}

iframe{
    height: 250px;
}

#about{
    background-color: #eeeeee;
}

#about img{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

#services{
    background-color: #87d6e4;
}

.card{
    border: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background-color: transparent;
}

.card:hover .card-body{
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.card img{
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background-color: transparent;
}

.card-body{
    font-weight: 700;
    font-size: 1.2rem;
    background-color: white;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

#contact a{
    color: #d17c2c;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

#contact a:hover{
    color: rgb(228, 99, 0);
}

footer{
    background-color: #00022b;
    color: #ffffff;
}

footer a, footer a:hover{
    color: #4fa5d8;
    font-weight: 700;
}

@media (min-width: 576px){
    .navbar-brand{
        font-size: 1.3rem;
    }

    .nav-link{
        font-size: 1.1rem;
    }

    #home h1{
        font-size: 2.5rem;
    }

    #home h2{
        font-size: 1.4rem;
    }
}

@media (min-width: 768px){
    #home h1{
        font-size: 3rem;
    }

    #home h2{
        font-size: 1.6rem;
    }

    #contact p{
        font-size: 1.1rem;
    }
}

@media (min-width: 992px){
    #home h1{
        font-size: 3.5rem;
    }

    #home h2{
        font-size: 1.8rem;
    }

    #about p, #contact p{
        font-size: 1.1rem;
    }
}

@media (min-width: 1200px){
    .card-body{
        font-size: 1.1rem;
    }
}