body {
  background: #fafafa;
  color: #333333;
  margin-top: 5rem;
}

h1, h2, h3, h4, h5, h6 {
  color: #444444;
  font-family: 'Optima', Arial, sans-serif;
    font-weight:600;
}

.bg-steel {
  background-color: #5f788a;
}

.site-header .navbar-nav .nav-link {
  color: #cbd5db;
}

.site-header .navbar-nav .nav-link:hover {
  color: #ffffff;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 500;
}

.project-content {
  background: transparent;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.content-section {
  background: #ffffff;
  padding: 10px 20px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  margin-bottom: 20px;
}

.article-title {
  color: #444444;
  font-family: 'Helvetica Neue', Cambria, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
}


a.article-title {
  color: #444444;
  text-decoration: none;
}

a.article-title:hover {
  color: #428bca;
}


.article-author{
    color: grey;
    font-family: sans-serif;
    text-decoration: none;
}

a.article-author:hover {
    color: #428bca;
    text-decoration: none;
}

/***Verdana***/

/*Georgia*/

/***Cambria***/

.article-content, p, li {
  white-space: pre-line;
  font-family: 'Georgia', 'Verdana', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
}
.article-img {
  height: 65px;
  width: 65px;
  margin-right: 16px;
}

.article-metadata {
  padding-bottom: 1px;
  margin-bottom: 4px;
  border-bottom: 1px solid #e3e3e3
}

.article-metadata a:hover {
  color: #333;
  text-decoration: none;
}

.article-svg {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.account-img {
  height: 125px;
  width: 125px;
  margin-right: 20px;
  margin-bottom: 16px;
}

.account-heading {
  font-size: 2.5rem;
}

.about-title{
    font-family: 'Optima', sans-serif;
}

.about-image {
    float: right;
    margin: 0 0 1em 2em;
    max-width: 300px;
    border-radius: 8px;
}

.about-content p {
    display: block;
    margin-bottom: 1.5em;
    line-height: 1.6;
    text-align: justify;
    word-break: break-word;
    white-space: normal;
    max-width: 75%;
}


/* Project Page Styles */
.project-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    /*cursor: pointer; !* Changes the mouse cursor to a hand icon *!*/
}

.project-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.project-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-title {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 0.75rem;
}

.project-description {
    color: #666666;
    font-size: 1rem;
    font-family: "Lucida Grande", sans-serif;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.project-link {
    margin-top: auto;
    align-self: flex-start;
}

/* Animation for Project Page Titles */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-title{
    animation: fadeInDown 0.5s ease-out forwards;
    opacity: 0;
    transition: color 0.3s ease;
    font-family: 'Optima', sans-serif;
}

.project-title:hover {
  color: lightgrey; /* A darker blue for the hover state */
}