h1 {font-family: "DynaPuff";
    color: #94a7e5;
    font-size: 60px;
    letter-spacing:5px;
    font-weight: 700;
    text-shadow: -2px -2px 0 black;}

.tagline {font-family:"Quicksand", sans-serif;
          animation: fade 0.8s ease forwards;}

  @keyframes fadeIn {
      from {opacity:0}
      to {opacity:1 ;}}



body {
  font-family:"Coiny", system-ui;
  text-align: center;
  padding-top: 50px;
  background:#f9fcff;
}

#quote-box {
  background: white;
  padding: 20px;
  margin: auto;
  width: 60%;
  border-radius: 15px;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 2px solid #BFD7EA;  
}

#quote-box {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}



button {
  margin-top: 20px;
  padding: 12px 25px;
  font-family:"Concert One",sans-serif;
  font-size: 1rem;
  cursor: pointer;
  background: #a0b3f3;
  border: none;
  border-radius: 8px;
  transition: background 0.4s ease, transform 0.3s ease;
}

button:hover {
  background: #fdfeff;
  transform: scale(1.05);
}
