@font-face {
  font-family: c059; /* set name */
  src: url("assets/C059_Roman.ttf"); /* url of the font */
}
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;

}
.bg {
    position: fixed;
    background: url("/assets/woods.jpg");
    background-repeat: repeat-x;
    background-size: auto 100%;

    height: 100%;
    width: 200vw;
    overflow: hidden;
    animation: slide 60s ease infinite;
    opacity: 100%;
    transition: all 15s;
    
}
.lauraholder {
    z-index: 1;
    position: relative;
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
}
.laura {
    position: relative;
    display: block;
    max-width: 85vw;
    max-height: 75vh;
    object-fit: contain;
    outline: darkslategray 8px solid;
}
.clickable {
    cursor: pointer;

}
.laura-date {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 3rem;
    font-family: c059;
    color: black;
    transition: all 15s;
    opacity: 100%;
}
.laura-date-hide {
    opacity: 0%;
}
 @media (min-width: 600px) {
    .laura-date {font-size: 2rem;}

 }

@keyframes slide{
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-25vw, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }

}