@font-face {
  font-family: 'Kingsbridge';
  src: url('https://micryptid.neocities.org/DEADMEATWEB/fonts/Cuomotype.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.image-row {
  display: flex;
  justify-content: center; /* centers the whole row */
  gap: 10px; /* space between images */
}

.image-row img {
  max-width: 100%;
  height: auto;
   display: flex;
  justify-content: center;
}

body {
  background-color: black;
  color: white;
  font-family: 'Kingsbridge', Arial, sans-serif;
  margin: 0;
  padding: 20px;
}

p {
  color: purple;
}

.dialogue {
  max-width: 700px;
  margin: auto;
}

.left {
  text-align: left;
  color: white;
  margin: 10px 20px 10px 0;
}

.right {
  text-align: right;
  color: blue; /* Blue */
  margin: 10px 0 10px 20px;
}

.

