Change the padding on the left side of all elements of the padded class to 50px.

<html>
<head>
<style>
.padded {
padding-left:50px;
}

</style>
</head>
<body>
</head>
<body>
<h1 class="padded">Snapcat</h1>
</body>
</html>]]>

Make sure to pick padding-left, followed by :, and finally 50px.