/* Here we can set styles for this lab page that we don't want to effect others pages */

/* the period in a CSS selector selects an element by class, e.g., class="minor-section" */
body{
  background-color: #8ACE00;
}
.minor-section {
    padding: 50px;
    margin-bottom: 50px;
    border: dotted 5px #426005;
    background-color: #8ACE00;
    font-family: Arial;
    text-align: Center;
    font-size: large;
  }
#content {
  margin: 100px;
  padding: 100px;
  border: dashed 10px #426005;
  background-color: #8ACE00;
  text-align: center;
  font-size: x-large;
}
.apple{
  margin: 10px;
  padding: 10px;
}