/* 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-color: white;
  color: black;
  body {
  /* In your style.css */
body {
  .gravitas-one-regular {
  font-family: "Gravitas One", serif;
  font-weight: 400;
  font-style: normal;
}

}



}
/* For the whole page */
body {
  border: 5px solid #333; /* 5px thick, solid, dark gray */
  background-color: #BAF5A4;
  padding: 20px; /* Space inside the border */
}

/* For a specific container */
.my-box {
  border: 2px dashed lightblue;
  border-radius: 10px; /* Rounded corners */
  padding: 15px;
}

