:root {
    --navy: #233D4D;
    --ivory: #F5EFE7;
    --orange: #FE7F2D;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html, body {
  height: 100%;
  background: #233D4D;
  color: #F5EFE7;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}
  
.wrap {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 0;
  }

  .col {
    width: 100%;
    text-align: justify;
    padding: 0 40px;
  }

  
  .hover-box {
    position: relative;
    display: inline-block;
  }

  .trigger {
    color: var(--orange);
    cursor: pointer;
  }

  .overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .overlay img {
    width: min(75vw, 950px);
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    pointer-events: none;
  }

  .hover-box:hover .overlay {
    opacity: 1;
  }

  a {
    color: var(--orange);
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }