/* style.css */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}
body {
  background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: rgba(0,0,0,0.4);
  padding: 20px;
}
h1 {
  margin-bottom: 20px;
  font-size: 2rem;
}
.info p {
  margin: 8px 0;
  font-size: 1.1rem;
}
