/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  font-family: monospace;
  background: url('brambles.gif');
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  color: #392a0d;
}

#box {
padding: 1em;
background: #d9c9a8;
border: solid 1px #392a0d;
box-shadow: 5px 5px 0px #392a0d;
}
