body, html {
  margin: 0;
  padding: 0;
  height: 100%;
    
}


.container {
  position: relative;
  height: 100%;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #eee;
}

.content h1 {
  font-size: 3rem;
}

.content p {
  font-size: 1.5rem;
    color: #555;

}

@media (max-width: 768px) {
  .content {
    padding: 0 20px;
  }
}
