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

.navbar{
    background-color: #f6f7e9;
}

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

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

.navbar-brand span{
    color: #000;
}

.navbar-brand span span{
    color: #3a6d48;
}

.nav-link{
    color: #000;
}

#home a{
    background-color: #3a6d48;
    color: #ffffff; 
}

#home a:hover{
    background-color: #23432c;
}

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

.section-header span{
    color: #3a6d48;
}

#about p{
    font-size: 1.1rem;
    line-height: 180%;
}

#about img{
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

#services{
    background-color: #C2C968;
}

#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{
    background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(234,249,249,0.67) 0.1%, rgba(239,249,251,0.63) 90.1% );
}

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

#contact a{
    color: #3a6d48;
}

#contact a:hover{
    color: #3a6d48;
}

footer{
    background-color: #3a6d48;
    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: #3a6d48 2px solid;
        color: #3a6d48;
    }
}

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

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