/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #fff;
  background-color: #000;
  text-align: center;
}

h1,
h2 {
  margin: 20px 0;
}

p {
  margin: 10px 0;
  line-height: 1.6;
}

a {
  color: #ffcc00;
  text-decoration: none;
}

/* Parallax Effect */
.parallax {
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.header-content .logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.content {
  padding: 50px;
  background: #111;
}

footer {
  padding: 20px;
  background: #222;
  color: #aaa;
  font-size: 14px;
}
