My css styles don't connect to my django-written website [closed]
Some styles were connected without any problems, but I managed to make only one section, as they stopped connecting and my entire site began to look like a document in word
I have already searched for similar problems here, tried the solutions given; I also searched for how to connect styles, etc. Unfortunately, I did not find a solution to my problem, so I am writing here
Base.html
{% load static %}
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}{% endblock %}</title>
{% block css %}
<link rel="stylesheet" href="{% static 'css/_normalize.css' %}">
<link rel="stylesheet" href="{% static 'css/main.css' %}">
{% endblock %}
</head>
index.html
{% extends './base.html' %}
{% load static %}
{% block css %}
<link rel="stylesheet" href="{% static 'css/main.css' %}">
{% endblock %}
{% block title %}
Главная
{% endblock %}
{% block content %}
<section class="hero">
<div class="container hero__container">
<div class="hero__content">
<div class="hero__text">
<h1 class="title hero__title">
Центр подбора лечения от алкоголизма, наркомании и других зависимостей
</h1>
<h4 class="title hero__subtitle">
Мы приходим на помощь в самых нелегких ситуациях и точно знаем как можем помочь
и пациенту, и его близкому окружению.
</h4>
</div>
<button class="btn btn-reset hero__btn">
<a href="#" class="link-reset hero__link">Бесплатная консультация</a>
</button>
</div>
<div class="hero__image">
<img src="{% static 'images/hero/hero-img.png' %}" aria-hidden="true" width="370" height="375" alt=""
class="hero__img">
</div>
</div>
</section>
{% endblock %}
settings.py
STATIC_URL = '/static/'
STATICFILES_DIRS = [BASE_DIR / "feedback/static/",
]
STATIC_ROOT = BASE_DIR / r"C:\dep-static"