/* Custom styles for the page */
body {
    font-family: 'Inter', sans-serif;
    /* Prevents horizontal scrollbars while allowing vertical scroll */
    overflow-x: hidden;
}

/* Animation for the background gradient circles */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Styling for the animated gradient container */
.gradient-container {
    animation: rotate 20s linear infinite;
}
