@font-face {
  font-family: 'ComicSans';
  src: url('/assets/fonts/COMIC.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ComicSans';
  src: url('/assets/fonts/COMICBD.TTF') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  background: url("/assets/imgs/starsbg.gif") repeat #030412;
  color: white;
  font-family: 'ComicSans', sans-serif;
  font-weight: 400;
  display: flex;
  align-content: center;
  justify-content: center;
  height: 100%;
}

h1 {
  height: 42px;
  font-weight: 700;
  margin: 30px 0 30px;
}

hr {
  color: white;
  width: 100%;
  margin: 10px 0 30px;
}

#container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

#title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 15px;
}

.photos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid white;
  padding: 15px;
}

.photos img {
  height: 400px;
}

#message {
  margin: 0 0 10px 0;
}

#disclaimer {
  color: red;
}

/* mobile crap */

@media (max-width: 768px) {
  .photos {
    margin-top: 50px;
  }
  .photos img {
    height: 400px;
    width: 45%;
    max-width: 100%;
  }
}