.picture-box {
  height: calc(100px + 12em);
  margin-bottom: 1em;
  padding: 0.5em;
  background: rgb(86, 89, 93);
  border-radius: 5px;
}
.quote-box {
    margin-top: 1em;
    padding: 0.5em;
    border-radius: 5px;
  }
  
  .quote {
    font-style: italic;
  }
  
  .author {
    font-weight: bold;
    text-align: right;
  }
  
  .author::before {
    content: " - ";
  }
  
  #picture img {
    width: 100%;
    height: 100%;
  }
  @media (max-height: 600px) {
    .picture-box {
        display: none;
    }
    main {
        padding-top: 1em;
    }
  }