body{
    font-family: 'PT Serif', serif;
}

.navbar{
    background-color: white;
}

.navbar-brand{
    font-size: 1.7rem;
}

.nav-link:hover{
    color: #471276;
}

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

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

.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: #b088d6;
}

.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: 1rem;
    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: #691db0;
    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;
}

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

footer a, footer a:hover{
    color: #ffffff;
    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: .9rem;
    }
}