@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #121212;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e0f7fa;
  padding: 20px;
}

.app-container {
  background: #1f1f1f;
  padding: 30px;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  text-align: center;
}

h1 {
  color: #00bcd4;
  margin-bottom: 25px;
}

.quote-box {
  background: #2c2c2c;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

#quoteText {
  /* font-size: 18px; */
  margin-bottom: 10px;
  
}

#quoteAuthor {
  font-size: 14px;
  color: #b0bec5;
}

#newQuoteBtn {
  background: linear-gradient(to right, #003441, #010b0c);
  color: white;
  font-weight: 600;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

#newQuoteBtn:hover {
  background: linear-gradient(to right, #003741, #000505);
  
 
}


