body {
    font-family: 'Quicksand', sans-serif;
    background-color: #f0f9ff;
}

.bg-baby-blue {
    background-color: #e0f2fe;
}

.text-baby-blue {
    color: #0ea5e9;
}

.border-baby-blue {
    border-color: #bae6fd;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.custom-shadow {
    box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.1);
}

html {
    scroll-behavior: smooth;
}
