* {
    margin: 0; /* This is typical, to standardize starting point among various browsers aka "CSS reset" */
    padding: 0; /* This is typical, to standardize starting point among various browsers aka "CSS reset" */
    box-sizing: border-box; /* DON't USE:Ensures consistent box model behavior, changes from default of content-box */
    font-family: Arial, sans-serif;
    color: black; /* sets default font color */
    /* border: 1px solid red; /* For debugging. Should be removed or commented out */
}

.header {
  text-align: center;
  text-transform: uppercase;
  background-color: #0a0a23;
  color: #fff;
  border-bottom: 4px solid #fdb347;
}

.header h1{
    color: grey;
}

button {
  margin-left: 40%;
}