body {
    background: #ffffff;
    font-family: 'Arvo', serif;
}
body a {
    color: #f59438;
    font-weight: bold;
}
body a:hover {
    color: #9b9b9b;
}
header {
    background-image: url(images/header-comp.jpg) !important;
    background-position: center;
    background-size: cover;
    font-weight: bold;
    color: #f59438;
    border-bottom: 3px solid #9b9b9b;;
    border-top: 5px solid #9b9b9b;;
    font-family: 'Bebas Neue', cursive;
}
.display-2 {
    font-size: 4em;
    text-shadow: 5px 5px 10px black;
    margin-left: -.15em;
    padding-left: .15em;
    border-radius: 5px;
}

.navbar-light {
    background: #000000 !important;
    padding: .5em;
}
.dropdown {
    font-family: 'Khand', sans-serif;
    font-weight: 500;
    
}
.dropdown-menu {
    background: #f59438;
    font-size: 1.25em;
}
.nav-link {
    color: #f59438 !important;
    font-size: 1.4em;
    font-family: 'Khand', sans-serif;
    font-weight: 500;
    transition: color .5s; /* animation with transition */
}
.nav-link:hover {
    color: #ecebd5 !important;
}
.navbar-toggler-icon {
    background: #f59438;
    border-radius: 5px;
}
/* Main content */
h1 {
    font-size: 1.5em;
}
h2 {
    font-size: 1.3em;    
}
h3 {
    font-size: 1.25em;
}
.subhead {
    color: #000000;
    font-family: 'Permanent Marker', cursive;
}
article img {
    border-radius: 5px;
    border: 5px solid #f59438;
}
.border-top {
    border-color: #f59438 !important;
}
.carousel-inner {
    box-shadow: 5px 0 10px #cacaca, -5px 0 10px #cacaca;
}

/* accordion styles */
.accordion {
    box-shadow: 5px 0 10px #cacaca, -5px 0 10px #cacaca;
}
.card {
    border: 1px solid #000000;
}
.card-header {
    background: #f59438;
}
.card-header button {
    color: #000000;
    font-weight: bold;
    font-size: .65em;
}
.card-header h2 {
    font-size: 1.6em;
}
.card-header button:hover {
    color: #ecebd5;
    text-decoration: none;
}
.card button {
    font-family: 'Permanent Marker', cursive;
    font-size: 0.8em; 
}

/* card styles */
.card-columns .card {
    border: 3px solid #9b9b9b;
    box-shadow: 5px 0 10px #cacaca, -5px 0 10px #cacaca;
    margin: 1em 0;
    transition: border-color 1s;
}

.card-columns .card img {
    border: 0;
    border-radius: 0;
}
.card-columns .card:hover {
    border-color: #f59438; /* animation with transition */
}
.card-columns .card .card-title {
    text-align: center;
    font-family: 'Permanent Marker', cursive;
    font-size: 1.75em;
}
.badge-primary {
    background: #f59438;
    font-family: 'Arvo', serif;
}
.badge-secondary {
    background: #4287f5;
}
.card-title {
    font-size: 1.4em !important;
}

/* form styles */

#goals, #comment {
    width: 100%;
    padding: .5em;
}
.btn-primary {
    background: #f59438;
    border: 0;
}
.btn-primary:hover {
    background: #9b9b9b;
}

/* table styles */

thead {
    background: #f59438;
    color: #ffffff;
}

/* Footer Styles */
footer {
    background: #f59438;
    color: #ecebd5;
    font-family: 'Khand', sans-serif;
    border-top: 5px solid #9b9b9b;
}
footer h4 {
    font-size: 2em;
}
footer h5 {
    font-size: 1.5em;
}


/* media queries */

/* Card Column Adjustments */
@media (min-width: 576px) {
    .card-columns {
        column-count: 1;
    }

}

@media (min-width: 768px) {
    .card-columns {
        column-count: 2;
    }

}

@media (min-width: 992px) {
    .card-columns {
        column-count: 3;
    }
}


/* Responsive Text Changes */
/* Extra small devices (portrait phones, less than 576px) */
/* No media query for `xs` since this is the default in Bootstrap */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 
    .display-2 {
        font-size: 4em;
    }
    h1 {
        font-size: 2.25em;
    }
    h2 {
        font-size: 1.5em;
    }
    h3 {
        font-size: 1.25em;
    }
    .card-header h2 {
        font-size: 2em;
    }
    .card-title {
        font-size: 1.75em !important;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .display-2 {
        font-size: 5.5em;
    }
    h1 {
        font-size: 2.5em;
    }
    h2 {
        font-size: 2.15em;
    }
    h3 {
        font-size: 1.75em;
    }
    .card-header h2 {
        font-size: 2em;
    }
    .card-title {
        font-size: 2em !important;
    }
    table {
        width: 80% !important;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .display-2 {
        font-size: 7em;
    }
    h1 {
        font-size: 3em;
    }
    h2 {
        font-size: 2.25em;
    }
    h3 {
        font-size: 2em;
    }
    .card-header h2 {
        font-size: 2.5em;
    }
    .card-title {
        font-size: 1.75em !important;
    }
    table {
        width: 75% !important;
    }
    .card-columns .card img {
        filter: grayscale(100%);
        transition: filter 1s;
    }
    .card-columns .card img:hover { /* animation with transition */
        filter: none;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .display-2 {
        font-size: 8em;
    }
    h1 {
        font-size: 3.25em;
    }
    h2 {
        font-size: 2.25em;
    }
    h3 {
       font-size: 2em; 
    }
    .card-header h2 {
        font-size: 2.5em;
    }
    .card-title {
        font-size: 2em !important;
    }
    table {
        width: 50% !important;
    }
}
