/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@media(min-width:30em){.row{width:100%;display:table;table-layout:fixed}.col{display:table-cell}}

body {
  color: white;
  text-align: start;
  font-family: "Lucida Console", "Courier New", monospace;
  background-image: url("background.png")
}
h1 {
  color:red;
  text-shadow:
  2px 2px 0px yellow,
  4px 4px 0px green,
  6px 6px 0px blue;
  letter-spacing: 4px
}
a {
 color:lightblue
}
.roses {
  background-image: url("roses.png");
  background-color: transparent
  }