/* Float an element to the right so that surrounding text wraps around it.
   On small screens the float is removed and the element is centered above the text. */
.float-right {
  float: right;
  margin-left: 24px;
  margin-bottom: 12px;
}

.float-right img {
  display: block;
  max-width: 100%;
}

.funding-logo {
  margin: 20px 0 20px 36px;
}

@media (max-width: 600px) {
  .float-right {
    float: none;
    display: block;
    margin: 0 auto 20px auto;
  }
  .funding-logo {
    margin: 0 auto 24px auto;
  }
}
