/* Load custom fonts */
@font-face {
  font-family: 'FontOne';
  src: url('fonts/ghosthey-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'FontTwo';
  src: url('fonts/Brotheric Ink Bleed Demo.otf') format('opentype');
}

/* Reset and layout */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* Centered container */
.overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: white;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Force image to 100x100 pixels */
.center-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 20px;
}

/* Title using FontOne */
.title {
  font-family: 'FontOne', sans-serif;
  font-size: 2.5em;
  margin: 10px 0;
}

/* Subtitle using FontTwo */
.subtitle {
  font-family: 'FontTwo', sans-serif;
  font-size: 1.2em;
  margin: 0;
}