/* stream.css */

.empty-state {
  text-align: center;
  margin-top: 30vh;
  color: #9AA4AF;
}

.fab {
  position: fixed;
  right: 20px;
  bottom: 80px;
  background: var(--accent);
  color: #000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 32px;
  text-align: center;
  line-height: 56px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .fab {
    max-width: 580px;
    left: 50%;
    transform: translateX(-50%);
  }
}
