/* Media Queries */



/* 768px */
/*@media only screen and (min-width: 768px) and (max-width: 1024px) */

@media only screen and (min-width: 768px) {
    background-color: #F09;
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
  .intro, .featured {
    padding: 20px;
  }
  .poem-card {
    width: 80%;
    margin: auto;
  }
}

/* 480px */
/*@media only screen and (min-width: 320px) and (max-width: 480px) */

@media only screen and (min-width:320px) and (max-width: 480px){
    header {
    flex-direction: column;
    text-align: center;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .search-container input {
    width: 100%;
  }
  .poem-info h3 {
    font-size: 1.2rem;
  }
}
