/* Fonts */
@font-face {
  font-family: 'silkscreen';
  src: url("/assets/Silkscreen-Regular-08667751.ttf") format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'silkscreen';
  src: url("/assets/Silkscreen-Bold-b349599b.ttf") format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'protest';
  src: url("/assets/ProtestStrike-Regular-08365628.ttf") format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.silkscreen {
  font-family: silkscreen, 'Courier New', monospace;
}

.protest {
  font-family: protest, 'Times New Roman', serif;
}

.guilded {
  text-shadow:
    0em 3px 1px var(--bs-body-bg),
    3px 0em 1px var(--bs-body-bg),
    0em -3px 1px var(--bs-body-bg),
    -3px 0em 1px var(--bs-body-bg),
    4px 4px 0px var(--bs-secondary);
}

html, body {
  min-height: 100%;
}

body {
  background-image: url("/assets/noise-58e19981.svg");
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
}

h1, h2 {
  font-family: 'protest';
  color: var(--bs-primary);
}

h3, h4, h5, h6 {
  color: var(--bs-secondary);
}

/* Containers */
.backdrop-blur {
  backdrop-filter: blur(3px);
}

/* Images */
.image-container {
  position: relative;
  display: inline-block;
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
}

.image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 60%, rgba(0, 0, 0, 0.8) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
