* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0b0b0b;
  color: white;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 25px;
  background: black;
}

.logo {
  color: #ff2a2a;
}

.btn {
  background: #ff2a2a;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 20px;
}

.btn:hover {
  background: #ff4444;
}

.big {
  font-size: 18px;
}

/* HERO */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.9)),
              url(images/hero.jpg) center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h2 {
  font-size: 40px;
  color: #ff2a2a;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: space-around;
  padding: 40px;
}

.feature {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 15px;
}

/* GALLERY */
.gallery {
  padding: 40px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 15px;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* DOWNLOAD */
.download {
  background: #140000;
  padding: 50px;
  text-align: center;
}

/* FOOTER */
footer {
  background: black;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}