/* Ensure the image covers the entire page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4a1f87; /* Matches the purple background of your image */
  }
  
  .cover-container {
    width: 100%;
    height: 100%;
  }
  
  .cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image scales proportionally and covers the viewport */
  }