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

body, html {
  font-family: 'Arial', sans-serif;
  height: 100%;
  background: #111;
  color: #fff;
}

/* Background Image Section */
.bgimg {
  background: url('xmt250efi-r.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  position: relative;
}

/* Header/Logo */
.header {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 1.8rem;
  font-weight: bold;
}

/* Middle Content */
.center-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.center-box h1 {
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px #000;
  margin-bottom: 20px;
}

.center-box hr {
  width: 60%;
  margin: 0 auto 10px auto;
  border: 1px solid #fff;
}

.center-box p {
  font-size: 1.3rem;
  color: #ccc;
}

/* Footer */
.footer {
  position: absolute;
  bottom: 20px;
  left: 30px;
  font-size: 0.9rem;
  color: #bbb;
}

.footer-right {
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-size: 0.8rem;
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .center-box h1 {
    font-size: 2.2rem;
  }

  .center-box p {
    font-size: 1rem;
  }

  .header {
    font-size: 1.3rem;
    left: 20px;
  }

  .footer, .footer-right {
    font-size: 0.75rem;
    left: 20px;
    right: 20px;
  }
}
