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





.comic-relief-regular {
  font-family: "Comic Relief", system-ui;
  font-weight: 400;
  font-style: normal;
}

.comic-relief-bold {
  font-family: "Comic Relief", system-ui;
  font-weight: 700;
  font-style: normal;
}


  h1 {text-align: center;}
body {
  background-color: black;
  color: white;
  font-family: '';

}

border: 20px solid ;
border-image: url('BORDERS/border_dw_blue_stars_0.png') ;


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

  border-image: url('BORDERS/STAMP.png') ;
    radial-gradient(
      var(--radius),
      transparent 98%,
      white
    ),
    linear-gradient(white 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);
}


/*  Cosmetic styles */

body {
  background: slateblue;
}

.stamp-border {
  width: min(50%, 600px);
  height: 50%;
  position: fixed;
  inset: 0;
  margin: auto;
}


p {
  font-size: 30px;
}

@font-face {
  font-family: "Pixel Operator";
  src: url("Fonts/PixelOperator.ttf") format("truetype");
  
}

@font-face {
  font-family: "OMORI";
  src: url("Fonts/OMORI_GAME2.ttf") format("truetype");
  
}




