You mean you want to add padding to the left and right?
Like this?
.project-game-1{
display: block;
font-family: 'Ubuntu', sans-serif;
color: white;
text-decoration: none;
padding-bottom: 100px;
padding-left: 15px; /* adjust for what u need */
padding-right: 15px; /* adjust for what u need here too */
}
Well it’s basically the same, you just change the padding
.project-game-1{
display: block;
font-family: 'Ubuntu', sans-serif;
color: white;
text-decoration: none;
padding-bottom: 100px; /* you already added bottom here */
padding-top: 15px; /* just add this one here */
}
If this is not working be sure that the CSS file is properly linked with your HTML file and remember about the CSS Cascade rule: if there is another rule with the same specificity later in the CSS, it will override your rule.