body {
    min-height: 100vh;
    background-color: black;
    /* background-image: url('/public/img/covers/sergey-pesterev-9-5-WYEBDz0-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    position: relative;
    margin: 0; /* Remove default body margin */
  }
  /* Semi-transparent overlay for readability */
  body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay with 50% opacity */
    z-index: 0;
  }