html {
  height: 100%;
  width: 100%;
}

body {
  background-color: rgb(200, 100, 100);
}

h1 {
  color: rgb(255, 180, 175);
  font-family: "Comic Sans", monospace;
  display: flex;
  justify-content: center;
}

h2 {
  color: pink;
  /* This is how to comment in CSS */
  font-family: "Lucida Console", "Courier New", monospace;
  line-height: 0px;
  text-decoration: underline;
}

p {
  color: white;
  font-family: 'Courier New', Courier, monospace;
  border: 1px dashed white;
  border-radius: 5px;
  padding: 5px;
}

/* .flower {
  width: 50px;
  display: flex;
  justify-content: flex-end;
} */