@keyframes fall {
  from {
    top: -50px;
    transform: rotate(0deg);
  }
  to {
    top: 100vh;
    transform: rotate(360deg);
  }
}

@keyframes rotate-360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotate-360 {
  animation: rotate-360 1s ease-in-out;
}

.berry-bounce {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s;
}

.berry-bounce:hover {
  animation: bounce 0.5s;
}

.berry-bounce:active {
  transform: scale(1.2);
}

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

* {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}