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

.navbar{
    background-color: #ffffff;
    border-bottom: 2px solid #000000;
}

.navbar-brand{
    font-weight: 700;
}

.navbar-brand img{
    width: 200px;
}

.nav-link{
    color: #000;
}

#home a{
    background-color: #000000;
    color: #ffffff; 
}

#home a:hover{
    background-color: #333333;
}

.section-header{
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.section-header span{
    color: #333333;
}

#services{
    background-color: #e1dfe2;
}

#services h2{
    color: #ffffff;
}

#services .card{
    border: 0;
    font-size: 1.2rem;
    background-color: transparent;
}

#services .card .card-body{
    background-color: #fff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transform: translateY(8px);
    -webkit-transform: translateY(8px);
    -moz-transform: translateY(8px);
    -ms-transform: translateY(8px);
    -o-transform: translateY(8px);
    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;
}

#services .card:hover .card-body{
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
}

#contact{
}

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

#contact a{
    color: #000000;
}

#contact a:hover{
    color: #333333;
}

footer{
    background-color: #333333;
    color: #ffffff;
}

footer a, footer a:hover{
    color: #ffffff;
    font-weight: 600;
}

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

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

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

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

    .nav-link{
        border-bottom: transparent 2px solid;
    }

    .nav-link:hover{
        border-bottom: #333333 2px solid;
        color: #333333;
    }
}

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

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

    .navbar-brand img{
        width: 150px;
    }
}