/* Style the container with a rounded border, grey background and some padding and margin */
.quotecontainer {
    border: 2px solid #000;
    background-color: #000;
    border-radius: 5px;
    padding: 16px;
    margin: 16px 0;
}

/* Clear floats after containers */
.quotecontainer::after {
    content: "";
    clear: both;
    display: table;
}

/* Float images inside the container to the left. Add a right margin, and style the image as a circle */
.quotecontainer img {
    float: left;
    margin-right: 20px;
    border-radius: 50%;
}

/* Increase the font-size of a span element */
.quotecontainer span {
    font-size: 20px;
    margin-right: 15px;
}

/* Add media queries for responsiveness. This will center both the text and the image inside the container */
@media (max-width: 450px) {
  .quotecontainer {
    text-align: center;
  }

  .quotecontainer img {
    margin: auto;
    float: none;
    display: block;
  }
}