body {
  margin: 0;
  background: #000;
  font-family: 'Arial Black', Arial, sans-serif;
  color: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

#quotes {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 3em;        /* larger text */
  font-weight: bold;
  width: 90%;
  line-height: 1.4;
  padding: 0 10px;
  word-wrap: break-word;
}

#portrait {
  margin-bottom: 25px;   /* buffer below image */
}

#portrait img {
  width: 90vw;
  max-width: 1200px;
  height: auto;
}

/* fade effect */
.fade {
  opacity: 0;
  transition: opacity 2s;   /* slower fade */
}
.show {
  opacity: 1;
}

/* 📱 Mobile optimization */
@media (max-width: 768px) {
  #portrait img { width: 95vw; }
  #quotes { font-size: 2em; }
}
@media (max-width: 480px) {
  #portrait img { width: 100vw; }
  #quotes { font-size: 1.4em; }
}
