/* Police Google Fonts */
 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Quicksand&display=swap');
 
 body {
   background: linear-gradient(to bottom, #2c003e, #5a1a74);
   font-family: 'Quicksand', sans-serif;
   color: #f5e6ff;
   margin: 0;
   padding: 0;
   height: 100%;
   min-height: 100vh;
 }
 
 h1, h2, h3 {
   font-family: 'Playfair Display', serif;
   color: #d6b3ff;
   text-shadow: 1px 1px 4px #00000066;
 }
 
 a {
   color: #e0b3ff;
   text-decoration: none;
   transition: color 0.3s ease;
 }
 
 a:hover {
   color: #ffffff;
   text-shadow: 0 0 5px #c085ff;
 }
 
 .main-container {
   max-width: 1000px;
   margin: auto;
   background: #3e0055cc;
   padding: 30px;
   border-radius: 20px;
   box-shadow: 0 0 15px #00000066;
 }
 
 .btn {
   background: #7e3ff2;
   color: white;
   padding: 10px 20px;
   border-radius: 12px;
   border: none;
   font-weight: bold;
   cursor: pointer;
   transition: background 0.3s;
 }
 
 .btn:hover {
   background: #a267f5;
 }
 
 footer {
   text-align: center;
   padding: 20px;
   font-size: 14px;
   color: #cfaaff;
 }
.jumbotron {
   background: transparent;
}