h1 {
    font-family: 'Courgette', cursive;
}

.sectionPort, .sectionProj, .contact  {
    font-family: 'Pacifico', cursive;
}

.navbar-brand {
    font-family: 'Qwigley', cursive;
    font-size: 40px;
}

.aboutMe, #date, .contactInfo {
    font-family: 'Kalam', cursive;
    font-weight: bold;
}

#hello {
    font-family: 'Roboto Condensed', sans-serif;
}

/* ------Colors------ */
h1 {
    color: #eeebf1;
}

#date {
    color: #eeebf1;
} 

.navbar-brand {
    text-shadow: 0px 0px 10px #1e68d6, 0px 0px 5px #003585;
}

.navbar-nav {
    text-shadow: 0px 0px 2px #1e68d6, 0px 0px 2px #003585;
}

.aboutMe, .resume {
    color: #eeebf1;
    filter: drop-shadow(2px 2px 8px #020244);
}

.sectionPort {
    color: #eeebf1;
}

.sectionProj, sectionCont {
    color: #1d273b;
}

.footer {
    color: #eeebf1;
}

/* -------Backgrounds------- */
.jumbotron, .portfolio {
    background-image: linear-gradient(#1d273b, #c1d2f1);
}

.projects, .contact {
    background-image: url(../images/bgdSheer.jpg);
    background-size: cover;
}

/* ------Images------ */
.img-thumbnail {
    border: 5px solid #ced7f1;
    background: #2d3a53;
    box-shadow: 0px 0px 10px #0e182b, 0px 0px 20px #003585, 0px 0px 20px #aabad6, 0px 0px 30px #c1d2f1;
    transition: 0.2s;
}
.img-thumbnail:hover {
    animation: change-shadow 0.2s forwards;
}
@keyframes change-shadow {
    to {
        box-shadow: 0px 0px 10px #710480, 0px 0px 50px #eb4deb, 0px 0px 30px #e782da, 0px 0px 40px #efc1f1;
    }
}

img {
    margin-bottom: 16px;
    padding: 20px;
}

.card-img-top {
    background-color: #ebeef3;
}

#cardImg {
    border: 5px solid #212a3d;
}

/* -----Hire Banner----- */
pre {
    text-align: center;
    font-family: monospace;
    font-size: medium;
    font-weight: bold;
    /* color: white; */
    color: #0911b3;
    margin-top: 1rem;
    margin-bottom: 0;
}

#target {
    background: #56BD2B;
    transition: 0.2s;
}
#target:hover {
    animation: change-color 0.2s forwards;
}
@keyframes change-color {
    to {
        background: red;
    }
}

/* ------Project Banner------ */
#projectBanner {
    background: #56BD2B;
    transition: 0.2s;
}
#projectBanner:hover {
    animation: change-color 0.2s forwards;
}
@keyframes change-color {
    to {
        background: red;
    }
}

/* ------Contact Banner------ */
#contactBanner {
    background: #56BD2B;
    animation-name: changeContact;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    transition: 2s;
}

@keyframes changeContact {
     25% {background: red;}
}

/* ------Navbar------ */
.navbar {
    padding: 0px 16px;
}

/* ------Home Page------ */
.jumbotron {
    margin-bottom: -25px;
    padding: 40px;
}

/* -----Project/Portfolio/Contact Pages------*/
h2 {
    padding: 30px;
}

.projects, .portfolio {
    padding-bottom: 50px;
    margin-bottom: -25px;
}

.contact {
    padding-bottom: 10em;
}

.contactInfo {
    padding: 10px 200px;
}

h4 {
    font-weight: bolder;
}

/* ------Cards------ */
.card {
    background-color: #212a3d;
    border: 2px solid #393941;
    color: whitesmoke;
}

#textLeft {
    padding-left: 70px;
}

.card-text {
    text-align: center;
}

/* ------Footer------ */
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
}

@media only screen and (max-width: 991px){
    #textLeft {
        padding-left: 0px;
    }
}

@media only screen and (max-width: 770px){
    .contactInfo {
        padding: 10px 50px;
    }
    footer {
        font-size: 12px;
    }
    .jumbotron {
        padding: 5px;
    }
    #date {
        font-size: 15px;
    }
    .welcome {
        font-size: 25px;
    }
}

@media only screen and (max-width: 400px){
    .contactInfo {
        padding: 10px 20px;
    }
}

@media only screen and (max-width: 350px){
    .contactInfo {
        padding: 10px 10px;
    }
}