/* 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 {
  background-image: url("images/fire-background.gif"), linear-gradient(to top, #f9cd93 70%, #f3f993);
  background-clip: border-box, border-box;
  background-size: 100% 70%, cover;
  background-repeat: no-repeat;
  background-position: bottom, top;
  background-attachment: fixed, fixed;
  font-family: sans-serif;
}

.main-box {
  background-color: #f99a93;
  margin-left: 20%;
  margin-right: 20%;
  border: 3px ridge #f99a93;
  padding: 10px 10px 10px 10px;
}