
  
      /* Style the container where the snow will fall */
      #snow-container {
        position: relative;
        height: 100vh;
        overflow: hidden;
      }
  
      .ml12 {
    font-weight: 200;
    font-size: 3em;
    letter-spacing: 0.3em;
  }
  
  .ml12 .letter {
    display: inline-block;
    line-height: 1em;
  }
  
  h2 {
    color: white;
    font-family: 'Dancing Script', cursive;
  }
  @keyframes transition {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  
  /* The Modal (background) */
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 50%;
    max-width: 1200px;
    height:max-content;
  }
  
  /* The Close Button */
  .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  
  .mySlides {
    display: none;
  }
  
  .mySlides img {
      opacity: 1;
      border-radius: 0;   
  }
  
  .mySlides img:hover {
      opacity: 1;   
  }
  
  
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next ,.prev:hover,.next:hover{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background: rgba(0, 0, 0, 0.8);
    text-decoration: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    text-decoration: none;
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 24px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  
  img {
    width: 100%;
    margin-bottom: -4px;
    border-radius: 5px;
    /* opacity: 0.6; */
    cursor: pointer;
   
  }
  
  
  img:hover {
    opacity: 1;
  }
  
  
  .demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }
  
  img.hover-shadow {
    transition: 0.3s;
  }
  
  .hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  @media only screen and (max-width: 600px) {
    .numbertext {font-size:14px;}
    .ml12 {font-size:12px;}
  }
  /* Small devices (portrait tablets and large phones, 600px and up) */
  @media only screen and (max-width: 768px) {
    .numbertext {font-size:17px;}
    .ml12 {font-size:32px;}
  }
  @media (min-width:250px) and (max-width:990px){
    .modal-content {
        position: relative;
        background-color: #fefefe;
        margin: auto;
        padding: 0;
        width: 80% !important;
        height:max-content !important;
        max-width: 1200px;
        margin-top: 18%;
    }
  }
  @media (min-width:990px){
    .modal-content {
      position: relative;
      display: flex;
      flex-direction: column;
      width: 50% !important;
      height: max-content !important;
      pointer-events: auto;
      background-color: #fff;
      background-clip: padding-box;
      border: 1px solid rgba(0,0,0,.2);
      border-radius: 0.3rem;
      outline: 0;
  }
  }