@font-face {
  font-family: 'NokiaFont';
  src: url('assets/nokiafc22.ttf') format('truetype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'NokiaFont', sans-serif;
  background-color: black;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

#splash img {
  width: 100vw;
  height: 100vh;
  object-fit: contain; /* keeps entire image visible */
  background: black;   /* fills empty areas with black */
  cursor: pointer;
}

