Problem with css

Hi, I have a problem with aditional css, I have this message appearing and I don’t now what to change.
Thank you for your help!!
Karina

Your curly brackets {} are imbalanced. Make sure there is a closing } for every opening {.

h1 {
font-size: 20px;
}
.flex-caption {
display: none;
}
@media (min-width: 992px) {
.main-content-inner.col-sm-12.col-md-8 {
width: 65%;
margin-right: 55px;}

div#secondary{
width: 29%;
font-size: 14px;}
#logo {
margin-top: -50px;
}

Hey there,
I hope you’re doing well today

The code you provide was indeed missing some closing braces.
Try this instead.

h1 {
  font-size: 20px;
}
.flex-caption {
  display: none;
}
@media (min-width: 992px) {
  .main-content-inner.col-sm-12.col-md-8 {
  width: 65%;
  margin-right: 55px;
  }
}
div#secondary{
  width: 29%;
  font-size: 14px;
}
#logo {
  margin-top: -50px;
}
h1 {
  font-size: 20px;
}
.flex-caption {
  display: none;
}
@media (min-width: 992px) {
  .main-content-inner.col-sm-12.col-md-8 {
  width: 65%;
  margin-right: 55px;
  }
}
div#secondary{
  width: 29%;
  font-size: 14px;
}
#logo {
  margin-top: -50px;
}

Best Regards,
Support

Thank you very much! It worked perfect!
Best regards!

Hello there,

I am glad the solution worked for you.
Please feel free to contact us again in the future regarding any other issues.

Best Regards,
Support