body {
  background: radial-gradient(circle, #cccccc 20%, white 40%);
  background-size: cover; /* Scales the image to cover the entire container */
  background-position: center center; /* Centers the image horizontally and vertically */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  height: 100vh; /* Sets the height to 100% of the viewport height */
  width: 100vw; /* Sets the width to 100% of the viewport width */
  margin: 0; /* Removes default body margin */
  padding: 0; /* Removes default body padding */
  overflow: hidden;
}


@font-face {
  font-family: 'Bungee';
  src: url('./fonts/Bungee-Regular.ttf') format('truetype');
}

.splash-text {
  font-size: 75px;
  font-family: 'Bungee'; /* Semicolon added here */
}