Here is the code. This is as simple as can be. Why won't it center?
.msg {
width: 600px;
height: 200px;
margin-left: auto;
margin-right: auto;
margin-top: 100px;
font-size: 42px;
font-weight: bold;
}
</style>
</head>
<body>
<div class="msg">This is not centered. Why not?</div>
</body>
</html>