body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Rubik', sans-serif;
}

.homepage {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.background-image {
  background-image: url('/images/retail-stylized-01.jpg'); /* Replace with the path to your background image */
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*filter: brightness(0.5); !* Adjust brightness as needed *!*/
  filter: brightness(0.75); /* Adjust brightness as needed */
}

.foreground-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 26px;
  font-weight: 400;
  text-shadow: 3px 3px 3px black;
  /*background: rgba(255, 255, 255, .8);*/
  /*padding: 20px;*/
  /*color: black;*/
  /*text-shadow: none;*/
  /*border: 1px solid black;*/
}

.foreground-text h1 {
  margin: 0;
  font-size: 58px;
  font-weight: 600;
  line-height: 1;
  /* Add additional styling as needed for your text */
}
