.bg-scroll-heart{
  position: absolute;
  inset: 0;
  background-image: url("../assets/design-3289984_1280.png");
  background-repeat: repeat;          /* allows infinite movement */
  background-size: 1200px 1200px;       /* IMPORTANT: pick a tile size */
  background-position: 0 0;
  animation: bgTopLeft 3600s linear infinite;
}

.bg-scroll{
  position: absolute;
  inset: 0;
  background-image: url("../assets/istockphoto-1218473959-612x612.jpg");
  background-repeat: repeat;          /* allows infinite movement */
  background-size: 600px 600px;       /* IMPORTANT: pick a tile size */
  background-position: 0 0;
  animation: bgTopLeft 3600s linear infinite;
}

/* Move the background up + left forever */
@keyframes bgTopLeft{
  from { background-position: 0 0; }
  to   { background-position: -60000px -60000px; } /* match background-size */
}


.bg-color{
    background-color: rgba(180, 165, 136, 0.85);
}

.bg-colorOpaque{
    background-color: rgba(180, 165, 136, 1);
}

.bg-color-dark{
    background-color: rgba(158, 144, 117, 0.85);
}