I recently set up a django backend website and attempted to incorporate CSS in my HTML using the following code snippet.
{% load static %}
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="{% static 'css/bootstrap.min.css' %}" rel="stylesheet">
<link href="{% static 'css/aos.css' %}" rel="stylesheet">
<link href="{% static 'css/index.css' %}" rel="stylesheet">
After implementing this, I noticed that all the text on my website appeared to be completely transparent. Although the letters were still visible when hovering over them with the cursor.
I conducted further tests by excluding aos.css from the code, leaving only bootstrap.min.css and index.css, which resulted in these styles working correctly without any transparency issues.
Is it possible that aos.css is not fully compatible with the Django framework?