.container {
  display: flex;
  flex-wrap: wrap;
}

.container > div {
  background-color: snow;
  font-size: 20px;
  margin: 20px;
  padding: 20px;
  width: 200px;
}

figure {
  float: right;
  width: 30%;
  text-align: center;
  font-style: italic;
  font-size: smaller;
  text-indent: 0;
  border: thin silver solid;
  margin: 0.5em;
  padding: 0.5em;
}

td {
  border: 2px double solid blue;
  padding: 0.5 rem;
}

div {
  padding-left: 10px;
  padding-right: 10px;
  border-top: 30px;
  font-size: 18px;
}

p {
  color: black;
}

div ul {
  color: blue;
}

body {
  margin: 10;
}

p {
  Float: left;
}

p::selection {
  color: red;
  background-color: yellow;
}

ol > li {
  color: blue;
}

ul {
  list-style-type: bullet;
  color: blue;
}

.themed-grid-col {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: rgba(86, 61, 124, 0.15);
  border: 1px solid rgba(86, 61, 124, 0.2);
}

.themed-container {
  padding: 15px;
  margin-bottom: 30px;
  background-color: rgba(0, 123, 255, 0.15);
  border: 1px solid rgba(86, 123, 255, 0.2);
}

/* Style the header */
.header {
  background-color: lightgrey;
  padding: 20px;
  text-align: center;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 15px;
  background-color: snow;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }

  /* code snippet from Computerhope.com */
  .rotateimg180 {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .btn {
    border: 2px solid var(--color, black);
    background: white;
    font-size: 1em;
    line-height: 2em;
    border-radius: 2px;
    margin-bottom: 5px;
    text-align: center;
  }
}

/*# sourceMappingURL=styles.css.map */
