 .title-hover-container {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 200px;
      max-width: 100%;
      margin: auto;

      img {
        box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
      }
    }

    .title-hover-container video {
      width: 100%;
      height: 100%;
      max-height: 200px;
      object-fit: cover;
      display: block;
    }

    .title-hover-title {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      background: rgba(0, 0, 0, 0.6);
      padding: 0.5em 1em;
      border-radius: 8px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
      z-index: 2;
      font-size: 1.5em;
    }

    .title-hover-container:hover .title-hover-title {
      opacity: 1;
      pointer-events: auto;
    }
    div.portfolio-placeholder {
        padding:6em;
        margin:auto;
        height: 600px;
        img {
            margin: auto;
            width: 100%;
        }
    }
    div.portfolio-item{
        padding:6em;
        margin: auto;
        height: 600px;
        cursor: pointer;
        a {
            font-style: normal;
            text-decoration: none;
            h4 {
                text-decoration: underline;
            }
        }
        img {
            box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            max-height: 200px; 
            margin-bottom: 4em;
            margin: auto;
            display: block;
        }
        div {
            margin-top: 4em;
        }

    }
    div.portfolio-item:hover {
        img {
            box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.5);
            transform: scale(1.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        h4 {
            opacity: 0.8;
        }
    }
    img.brandlogo {
        height: 2em;
        margin: 1em;
        vertical-align: middle;
    }
    .section-title {
        font-family: 'Doto', sans-serif; 
        font-weight: 900; 
        color: lightgreen !important;
        margin-top: 1px;
        margin-bottom: 1px;

    }
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Doto', sans-serif; 
        font-weight: 900;
    }
    div.nav{
        a{
            font-family: 'Doto', sans-serif; 
            font-weight: 700;
            font-size: large;
        }
        a:hover {
            color:lightgreen !important;
            font-weight: 900;
        }
    }