/* styles.css */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('engine-background.jpg') no-repeat center center/cover;
  color: #fff;
}

.overlay {
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

h1 {
  font-size: 3rem;
  color: #ff002d;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  margin: 10px 0;
}

.contact-btn {
  display: inline-block;
  margin: 20px 0;
  padding: 12px 25px;
  color: #fff;
  background-color: #ff002d;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #ffae00;
  transform: scale(1.05);
}

.website {
  margin-top: 20px;
  font-style: italic;
  color: #ddd;
}