
/* The style of the code a better visualization of the main 'Sketch' canvas and
some  additional effects of the ui of the overall project */

body {
  padding: 0;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  align-items: center;
  font-family: 'Arial', sans-serif; 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100% )  /*AI generated for better visual*/
  
}

canvas {
  border: 4px solid #333;
  border-radius: 10px;
  background-color: #2c3e50;
  box-shadow: 0 10 30px rgba(0, 0, 0, 0.8);
}


main {
  text-align: center;
}


#ui {
  margin-top: 20px;
  background: rgba(255,255,255,0);
  border-radius: 10px;
  padding: 15px;
  backdrop-filter: blur(10px);
}

.stats {
  justify-content: space-around;
  color: white;
  display: flex;
  font-size: 18px;
  
}

button {
  background : #08700C;
  border: none;
  color: white;
  margin: 5px;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.03s;  
}


button:hover {
  background: #45a049;
}

.controls {
  margin-top: 15px;
}