/* 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." */

  .indie-flower-regular {
  font-family: "Indie Flower", cursive;
  font-weight: 400;
  font-style: normal;
}

.jacquard-12-regular {
  font-family: "Jacquard 12", system-ui;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: #496B3C;
  color: #BDCFB2;
  font-family: Georgia;
}
h1 {
  border: 3px solid navy;
  padding: 10px;
  
  }
  
button {
  color: #634610;
  border: none;
  font-size: 20px;
  font-family: 'Indie Flower';
  width: 150px;
  height: 40px;
  margin: 10px 0px 10px 15px;
  background: transparent;
  }
  button a {
    margin: 10px;
  }
  



  