@import url('https://fonts.googleapis.com/css2?family=Silkscreen&display=swap');

center-wrapper {
  text-align: center; /* Centering the container's content */
  width: 100%;
}

body {
  background-color: black;
  color: #ccc; 
  font-family: 'silkscreen', monospace;
  margin: 0;
  padding: 10px;
  cursor: crosshair;
}

img {
  max-width: 100%;
  height: auto;
}

#title {
  letter-spacing: 0px;
  border-bottom: 8px solid transparent; 
  display: block;
  width: fit-content;
  margin: 0 auto; 
  text-align: center; 
  color: #ccc;
  transition: all 0.2s ease;
}

#title:hover {
  letter-spacing: 8px; 
  color: white;
  border-bottom: 8px solid #ccc; 
}