body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: black;
  color: white;
}

.hero {
  height: 100vh;
  background: url("assets/backgound.png") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero {
  height: 100vh;
  background: 
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
    url("assets/backgound.png") center/cover no-repeat;
}

.logo {
  width: 420px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  color: #fc0201;
}

.hero h2 {
  font-size: 2.5rem;
  color: #ff4500;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
}

.buttons button {
  background: linear-gradient(90deg, #ff0000, #ff7a00);
  border: none;
  color: white;
  padding: 15px 30px;
  margin: 10px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.2s;
}

.buttons button:hover {
  transform: scale(1.05);
}

.about {
  height: 100vh;
  background: url("assets/backgound.png") center/cover no-repeat;
  padding: 80px 20px;
  background: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about {
  height: 100vh;
  background: 
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
    url("assets/backgound.png") center/cover no-repeat;
}

.about h1 {
  font-size: 2.5rem;
  color: #ff4500;
}

.about p {
  font-size: 1.2rem;
  color: #ccc;
}