Applying same style to all the comments on the page

By default, WordPress will add some classes to each comment with comment_class(). All comments get the class comment. So you can style comments with:

.comment {
    border: 10px solid red;
}

See wp-includes/comment-template.php for more context.

tech