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

/* Styling */
body {
  	background-color: #000;
  	color: white;
}


/* Fonts sizes */
details, summary{
	font-size:larger;
}

/* Utilities */
.wrapper {
  	max-width: 1200px;
  	margin: 50px auto;
}

.example-code {
	margin: 0 auto;
	text-align: left;
	background-color: #222;
    color: #00ff00; /* Verde stile terminale retro */
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #444;
    overflow-x: auto;
}

.example-output {
	margin-top: 10px;
    padding: 15px;
    border: 2px dashed #666; /* Un bordo tratteggiato per far capire che è l'esempio "vivo" */
    background-color: #1a1a1a;
}

.mt-20 {
	margin-top: 20px;
}

/* Header */
header {
    text-align: center;
}

/* Main */
main {
	text-align: center;
}

/* Details/summary tags */
#detailsummary {
	margin-top: 20px;
	text-align: center;
}

/* Progress tag */
