0 / 60 seg.

Fill in the blanks to create a box model with a content width of 200 pixels, padding of 20 pixels, a border of 5 pixels, and a margin of 10 pixels:

.content-box {
    width: _____;
    padding: _____;
    border: _____;
    margin: _____;
}