don't work css in template

<!--
 templateType: "page"
 isAvailableForNewContent: true
-->
{{ standard_header_includes }}
{% dnd_area "body_dnd_area" %}
 {% dnd_section 
 background_color='red',
 max_width=1000,
 vertical_alignment='MIDDLE'
 %}
 {% dnd_module path='@hubspot/rich_text' %}
 {% module_attribute "html"%}
 This is your main headline.
 Use this space to tell everyone about what you have to offer.
 {% end_module_attribute %}
 {% end_dnd_module %}
 {% end_dnd_section %}
{% end_dnd_area %}
{{ standard_footer_includes }}

I have create template. I have use module in template but css does not work in my template

Hi @MHussain8

Your code is correct, but the issue is in the way you declared the background color of the section. You need to use Hex color codes or Rgba color model rather than their names.

I hope this will help you out. Please mark it as Solution Accepted and upvote to help another Community member.
Thanks!