Between your <style> and </style> in About Me add the following:
.profileModules .module, .blurbBox, .extendedProfile {
border: 2px solid #00ff00 !important;
padding: 10px;
margin-bottom: 15px;
border-radius: 8px;
box-shadow: 0 0 10px #00ff00;
}
.profileModules .module
targets the main content boxes.
.blurbBox, .extendedProfile
targets additional blurb or extended profile sections.Replace #00ff00
with your preferred color hex code (e.g., #ff0000
for red, #ffd700
for gold, etc.).Change solid
to dashed
, dotted
, or double
to alter the border style.Remove or tweak the box-shadow
if you don’t want a glow effect.