
body {
  background-image: url(background.jpeg); 
  background-size: cover;      
  background-repeat: no-repeat; 
  background-attachment: fixed;
  background-position: center;  
}
.text-box {
  border: 2px solid #6a0dad;     
  padding: 12px;              
  margin: 15px 0;             
  border-radius: 10px;        
  background-color: #e6c9f0;  
}
body a {
  color: #9370DB;  
  text-decoration: none;
}

body a:hover {
  color: #FFB6C1;  
  text-decoration: underline;
}

body a:visited {
  color: #BA55D3;   
}
.fancy {
  border: 2px solid #6a0dad;
  background: linear-gradient(135deg, #f3cce7, #e6c9f0); 
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 20px;
  color: #333333;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(106, 13, 173, 0.3); 
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fancy:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(106, 13, 173, 0.5);
}

.banner {
  background: rgba(106, 17, 203, 0.8);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.banner h1 {
  font-size: 2.5em;
  margin: 0;
}

.banner p {
  margin: 10px 0;
  font-size: 1.2em;
}

.banner .home-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: white;
  color: #2575fc;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
}

.banner .home-btn:hover {
  background: #f0f0f0;
}
.banner {
  background: rgba(106, 17, 203, 0.8); /* Purple with 80% opacity */
  color: white;
  text-align: center;
  padding: 80px 20px;
}


