html {
scroll-behavior: smooth;
}
::selection {
background-color: rgba(59, 130, 246, 0.2);
color: #1e3a8a;
}
.animate-bounce-in {
animation: bounceIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
@keyframes bounceIn {
0% {
transform: scale(0.8);
opacity: 0;
}
100% {
transform: scale(1);
opacity: 1;
}
}