*, *::after, *::before {
  box-sizing: border-box;
}

.modal {
    position: fixed;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform:  scale(0);
    transition: 1000ms ease-in-out;
    border: 1px solid #BFBFBF;
    box-shadow: 20px 20px 15px rgba(0, 0, 0, .5);
    border-radius: 18px;
    z-index: 10;
    background-color: white;
    width: 80vh;
    height:88vh;
    max-width: 90%;
    display:block;
    padding-top: 15px;
    left:30%;
    top: 10%; 
}


.arttitle{
    font-size: 60px;
    font-family: 'Rochester',cursive;
    text-align: center;
    white-space: nowrap;
    overflow: auto;
    font-weight: 800;
    margin-top: 1rem;
    margin-bottom: 0px;
}
.popcaptiontext{
    position: relative;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    top: 20px;
    margin: 0px 25px;
    
}
.popuptextspacer{
    margin: 8%
}

.modal.active {
    transform: scale(1);
    transition: 1000ms ease-in-out;
    opacity: 1;
    top: 10%;
    padding-top: 15px;
    z-index: 100;
}

.modal-body {
  padding: 0px 15px;
}
#overlay {
  backdrop-filter: blur(3px);
  position: fixed;
  opacity: 0;
  transition: 1000ms linear;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
 
    
}

#overlay.active {

/*    filter: blur(7px);*/
   /* backdrop-filter: blur(5px);*/
    opacity: 1;
    pointer-events: all;
    transform: scale(1);

    
}
.popuppicture{
    width: 100%;
    height: 70%;
}
.polaroid{
    cursor: pointer;
}


.blur.active{
    transform: scale(1.1);
}