I want the words "Check Out" to show up in a CSS box, however I am not able to do this. Here is my code:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Box</title>
</head>
<style>
.boxed {
width: 200px;
padding: 5px;
border: 5px blue;
margin: 0;
}
.shadow {
position: relative;
max-width: 270px;
box-shadow: 1px 1px 1px rgba(0,0, 0, 0.2)
}
</style>
<body>
<div class="boxed">Check Out</div>
</body>