body {
  background-color: #1B1918;
  color: #F0EAD6;
  font-family: Verdana;

  /* Centers all containers */
  min-height: 100vh;
  display: grid;
  place-items: center; 
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    width: 90%;
    
    /* Turn on Flexbox */
    display: flex;
    
    /* Stack children vertically */
    flex-direction: column;

    /* Centers children horizontally */
    align-items: center;
    
    /* Space between items within the container */
    gap: 8px;

    /* Space between items and container border */
    padding: 16px;

    /* DEBUG: Comment out later */
    /* border: 4px solid red;  */
}