We can set the width of a border by adding a number in pixels right after solid.
Here, we can 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, ;.