/* 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;
  font-family: Verdana;
}

.great-vibes-regular {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
}

h1 {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal; 
}

/* HTML: <div class="film-strip"></div> */
.film-strip {
  --s: 36px; /* control the size */
  --c: #222;
 
  width: calc(20*var(--s));
  aspect-ratio: 2;
  background: 
    conic-gradient(at 50% var(--s),var(--c) 75%,#0000 0) 
    0 0/calc(2*var(--s)) calc(100% - var(--s)) padding-box;
  border: var(--s) solid var(--c);
  padding: calc(var(--s)*2.5) calc(var(--s)*1.5);
  box-sizing: content-box;
  /* you can add a filter for an oldish effect */
  filter: sepia(1) brightness(0.9) grayscale(.2);
  color: #ffffff
}