@font-face {
    font-family: "Adobe Clean";
    src: url(../adobe-clean-cufonfonts/AdobeCleanBlack.otf);
}

h1 {
    display: flex;
    justify-content: center;
    font-family: "Adobe Clean";
    padding-top: 1rem;
}

span{
    display: flex;
    justify-content: center;
    font-family: "Adobe Clean Regular";
    font-size: larger;
    font-weight: bold;
    padding-bottom: 1rem
}


/* figure {
    display: inline-block;
    width: 33.333%;
    float: left;
} */

.memory-text{
    color: #b8b3b3;
    letter-spacing: 0.1rem;
}

.gallery{
    padding: 2rem 0;
    position: relative;
}

.gallery-container img {
    width: 100%;
    /* max-height: 10rem; */
    /* padding: 3rem; */
    object-fit: cover;
    transition: ease 0.1s;
}

.gallery-container img:hover{
    transform: scale(1.3);
    border: 3px solid transparent;
    border-radius: 5px;
    background-image: linear-gradient(
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0)
    ),
    linear-gradient(90deg, #d20be1,  #ca403b);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

/* .spacer {
    height: 5em;
} */