/* Custom styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#vanta-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}
/* Animation for the upload area */
.upload-area {
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover {
    border-color: #a855f7 !important;
    background-color: rgba(168, 85, 247, 0.05);
}

/* Textarea styling */
textarea {
    resize: none;
    transition: all 0.2s ease;
}

/* Gradient button hover effect */
.bg-gradient-to-r:hover {
    background-size: 150% 150%;
}
