body {
  background-color: darkkhaki;
}

.content {
  background-color: antiquewhite;
  border-radius: 1em;
  border: 3px solid antiquewhite;
}

div#petition {
  display: grid;

  form {
    grid-column: 1;
  }

  ul.comments {
    display: grid;
    width: fit-content;
    margin: auto;
    grid-column: 2;
    list-style-type: none;
  }
}

div.comment {
  grid-column: 1;
  margin: auto;
  margin-bottom: 10px;
  padding: 2px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  background-color: darkgray;
  width: fit-content;
  color: white;

  p#info {
    color: green;
  }
    
  span#name {
    font-weight: bold;
  }
    
  span#date {
    font-family: monospace;
    font-size: 12pt;
  }
    
  p#body {
    font-family: sans-serif;
  }
}