/* 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: #C4B439;
  color: #5B531A;
  font-family: "Cutive Mono", monospace;
  font-style: normal;
}
p {
  font-size: 1.3em;
}
h1 {
  font-size: 2em;
  color:#ac6435;
  font-family: "Sancreek", serif;
  letter-spacing:3px;
  text-align:center;
  }
#container {
  width:50%;
  margin:100px auto;
  background-color: #F9F8EB;
  padding:40px;
  text-align:center;
  }


.stamp-border {
  /* Change this value to adjust the stamp perforation size: */
  --radius: 8px;

  background-image: 
    radial-gradient(
      var(--radius),
      transparent 98%,
      #F9F8EB
    ),
    linear-gradient(#F9F8EB 0 0);
  background-repeat: 
    round, 
    no-repeat;
  background-position:
    calc(var(--radius) * -1.5) calc(var(--radius) * -1.5),
    50%;
  background-size:
    calc(var(--radius) * 3) calc(var(--radius) * 3),
    calc(100% - var(--radius) * 3) calc(100% - var(--radius) * 3);
}

.stamp-border {
  width: 50%;
  height: 50%;
  position: fixed;
  margin: auto;
}