.quote-container text-align: center; padding: 20px;
quoteText.style.opacity = 1; quoteAuthor.style.opacity = 0.7; , 300); rain quotes short
A simple container to hold the quote and a button to generate new ones. .quote-container text-align: center
quotes about overcoming "rainy" periods in life quoteText.style.opacity = 1
quote: "Rain is just the sky crying.", author: "Unknown" ,
// Event Listener btn.addEventListener('click', generateQuote);
<div class="quote-container"> <div class="quote-card"> <span class="drop-icon">💧</span> <p id="quote-text">"Some people feel the rain. Others just get wet."</p> <cite id="quote-author">- Bob Marley</cite> </div> <button id="new-quote-btn">New Quote</button> </div>