@font-face {
  font-family: 'EventFont';
  src: url(SourceSerif4_48pt-LightItalic.ttf);
}

body {
  font-family: 'EventFont', sans-serif;
  background: black;
  color: white;
  text-align: center;
}

#image-selection {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 600px; 
  margin: 0 auto; 
}

#image-selection label {
  margin: 10px; 
}

#image-selection img {
  width: 100px; 
  height: auto; 
}


#messages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px; 
}

#messages div {
  margin: 10px; 
}

#messages img {
  width: 100px; 
  height: auto; 
}
body {
  margin: 0;
  overflow: hidden; 
  background: black;
}

#messages {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.floating-image {
  position: absolute;
  width: 200px;
  transition: all 0.5s ease;
}
#color-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: red; 

  pointer-events: none;

  z-index: 9999;
}
#title {
  position: fixed;
  top: 20px;
  width: 100%;
  text-align: center;

  z-index: 10000; /* 🔥 ABOVE overlay */
}

#title h1 {
  color: white;
  font-size: 40px;
}