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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('LooseInTheWild.jpeg') center center / cover no-repeat fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

header {
  text-align: center;
  color: white;
  padding: 48px 60px;
  background: rgba(45, 100, 20, 0.72);
  border-radius: 24px;
  backdrop-filter: blur(4px);
}

.logo {
  font-size: 90px;
  margin-bottom: 20px;
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-15px); }
}

header h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.tagline {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.95;
}
