/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: Arial, sans-serif;
  background: url('pexels-pixabay-268533.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}

/* Container Styling */
.container {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
}

/* Heading Styling */
h1 {
  color: #333;
  margin-bottom: 20px;
  font-size: 2em;
}

/* Paragraph Styling */
p {
  color: #666;
  margin-bottom: 15px;
  font-size: 1.2em;
}

/* Link Styling */
a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
  h1 {
    font-size: 1.5em;
  }

  p {
    font-size: 1em;
  }

  .container {
    padding: 15px;
  }
}
