We can set the width of a border by adding a number in pixels right after solid.

Create a wider border by setting its width to 10px.

<html>
<head>
<style>
.title {
border: solid 10px;
}
</style>
<link rel="stylesheet" href="style.css">
</head>
<body>
Β Β <h1 class="title">πŸ‘₯πŸ‘₯ The Outliers πŸ‘₯πŸ‘₯</h1>
Β Β <h2>A journal about out of the ordinary peopleπŸ‘·β€</h2>
</body>
</html>]]>

Make sure to pick border, followed by :, and then solid, 10px, ;.