You have inlines styles of margin-left:55px and one of 5px that can be moved to these rules.
.cookiealert-container .cookies{
margin-left:55px;
}
.cookiealert-container .acceptcookies{
margin-left:4px;
}
Bear in mind those rules must follow after the cookie css or the cookie css overwrites it. (I am not sure why you are doing this anyway as that means the text is no longer perfectly centred in the available space because it is offset by 55px.)
You seem to be making progress
That’s not really a topic I would like to get involved in and I suggest you copy some of this last post and start a new thread in general web development forum as its a broad subject (and not my forte).
My personal view is that those sort of speed topics are really for larger more intensive sites and if you are using a framework like bootstrap you have negated any efficiency benefits anyway as you are loading a massive framework when you could have used a few lines of basic css. That’s not to say that bootstrap doesn’t have merit but it does come with massive overheads.
When you talk about FCP you would be looking to inline all the code that produces the first content paint of the above the fold content and deferring any scripts etc. I don’t believe that is something that will be useful for a bootstrap site because if you can do that then you would not have needed the framework in the first place (catch 22 again).
It’s good that you are taking your time to look at these issues though because awareness is key