body{
  background-color:rgb(59, 59, 59);
  padding:0px 10px;
}

fieldset{
  border:rgb(85, 86, 86) 5px solid;
  margin:0;
  padding:0;
}
.grid-container{
display: grid;
  grid-template-columns: repeat(1,1fr); /* 3 equal-width columns */
  grid-template-rows: repeat(200, 5px); /* 3 rows with 100px height */
  gap: 25px; /* Creates a 1px gap between grid items, forming the lines */
  background-color: black; /* Sets the color of the grid lines */
  width: 900px; 
  height: 600px;
}
.grid-item{
   background-color:limegreen;
   
}
h2{
    text-align: center;
  color:lime;
  background-color: rgb(131, 133, 128) ;
}
p{
    padding: top 1px; ;
    font-size: x-large;
    color:rgb(60, 22, 22)
}