body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #050505;
  color: white;
  scroll-behavior: smooth;
}

/* Hero */

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #020024, #090979, #000);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.logo {
  width: 140px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  color: gold;
  letter-spacing: 3px;
}

.hero p {
  opacity: 0.8;
}

.scroll-down {
  margin-top: 50px;
  animation: bounce 2s infinite;
  font-size: 20px;
}

/* About */

.about {
  padding: 80px 20px;
  text-align: center;
  background: #0b0b0b;
}

.about h2 {
  color: gold;
  margin-bottom: 20px;
}

/* Instagram */

.instagram {
  padding: 80px 20px;
  text-align: center;
}

.instagram iframe {
  width: 90%;
  max-width: 400px;
  height: 480px;
  border-radius: 15px;
  margin-top: 20px;
  border: none;
}

/* Footer */

footer {
  background: black;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  opacity: 0.7;
}

/* Animation */

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Mobile */

@media (max-width: 600px) {

  .hero h1 {
    font-size: 36px;
  }

}
