body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5; /* Set a default background color in case the image doesn't cover the entire viewport */
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%; /* Set the desired width of your image */
  height: 100%; /* Set the desired height of your image */
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

h1 {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  color: white;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7); /* Set the desired transparency (0.0 to 1.0) and adjust as needed */
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
  img {
    width: 90%;
    height: auto;
  }
  
  h1 {
    font-size: 2.5rem;
    padding: 10px;
  }
}
