
body {
font-family: 'roboto', sans-serif;
  background: linear-gradient(180deg, #1a1a40, #4b0082);    
  color: white;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  text-align: center;
}

.main-info {
  font-size: 1.5em;
  max-width: 600px;
  /* margin: 0 auto 0 auto; */
}

a {
  color: #2ca6a4; 
  text-decoration: none; 
}
.logo {
  display: block;
  width: 300px;
  margin: 0 auto;
  padding: 0;
}

.chill-oddstix{
  width: 180px;            
  height: auto;
  margin-top: 1.5rem;
  animation: bounce 4s ease-in-out infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  .bounce-img { animation: none; }
}