.item {                /*.item is the name of the class */  
  width: 300px; 
  height: 100px; 
  background-color: yellow;
  padding: 2em; 
  margin: 50px; 
  border: 4px dashed purple;
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 200px; 
  grid-gap: 20px;
}

/* #hello { /*pound sign in front of hello applies to only that div id*/
/*  background-color: pink; */
/*}*/

/*.cloud { /*all div classes named cloud will have these attributes*/
/*  background-color: purple;*/
/*}*/

/*.arial {*/
/*}*/

#mantis {
  background-color: purple; 
  text-align: center;
  color: pink;
}

#orchid {
  color: pink;
}

#cone {
  color: magenta;
}