<!DOCTYPE html>

<html>
  <head>
    <title>Example CSS</title>
    <link rel="stylesheet" type="text/css" href="./css/style.css">
  </head>

  <body>
    <h1>University of Montana</h1>
    
    <div class="main-container">
      <p>Missoula, MT</p>
    </div>
    
    <div class="secondary-container">
      
    </div>
  </body>
</html>
/* Add your styles here */
body {
  text-align: center;
  padding: 10px;
  border: 5px solid #000000;
}
.main-container {
  background: gold;
  border: 3px solid #000000;
}
.secondary-container {
  border: 3px solid #000000;
}