/* Reset some basic defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Full screen background with a gradient */
body {
  background: linear-gradient(135deg, #667eea, #764ba2);
  font-family: 'Arial', sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Centered content container */
.container {
  text-align: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  max-width: 600px;
  margin: 20px;
}

/* Headline style */
h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

/* Paragraph style */
p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Button style */
.contact-btn {
  display: inline-block;
  text-decoration: none;
  color: #764ba2;
  background: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-btn:hover {
  background: #764ba2;
  color: #fff;
}
