<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cd__main{
    background: linear-gradient(to right, #d3cce3, #e9e4f0) !important;
  }
  
  
  section.wrapper {
    width: 100%;
  }
  
  .photo-gallery__wrapper {
    width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .photo-gallery__wrapper div {
    height: 80px;
    overflow: hidden;
    margin: 0.5rem;
    border-radius: 15px;
  }
  
  .image-holder {
    width: 800px;
    height: 500px;
    overflow: hidden;
    margin: 0 auto;
  }
  .image-holder img {
    width: 800px;
    height: 500px;
    object-position: 50% 50%;
    border-radius: 15px;
  }
  .image-thumbnail{
    cursor: pointer;
  }
  .image-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    transition: transform 0.35s;
    transform: scale(1);
    filter: grayscale(1);
  }
  .image-thumbnail img.active {
    filter: none;
  }
  .image-thumbnail:hover img{
    transition: transform 0.35s, filter 0.35s linear;
    transform: scale(1.12);
    filter: none;
  }</pre></body></html>