@import '../fonts/fonts.css';



/* 1. Rimuove margini, padding e imposta altezza completa */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: 'Fira Code', monospace; /* o altro font se vuoi */
  background-color: #0d1117; /* colore scuro tipo terminale */
  color: #e6edf3;
}

/* 2. Imposta dimensioni 100% anche sul contenitore radice della SPA */
#app {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* 3. Disabilita lo scroll orizzontale */
body {
  overflow-x: hidden;
  font-family: 'Fire Code', monospace;
  background-color:black;
  color:white;
	
}

/* 4. Box-sizing: border-box per evitare sorprese */
*, *::before, *::after {
  box-sizing: border-box;
}



.prova{
  background-color: white;
}