* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body{ 
	background-image: url('png123.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	color: white;
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	text-align: center;
	
	font-family: Arial, sans-serif;
	color:white;
	}

h1 {
	font-size: 5rem;
	color: #39ff14;
	text-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 30px #39ff14;
	margin-bottom: 20px;
	
	padding: 20px 40px;              
	border: 3px solid #39ff14;       
	border-radius: 15px;              
	background: rgba(0,0,0,0.4);     
	}

p {
	font-size: 2rem;
	background: linear-gradient(90deg, red, orange, yellow, green, indigo, violet);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: rainbow 5s linear infinite;     
	}
	
@keyframes rainbow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}



a {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  background-color: #39ff14;
  color: #0f172a;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14;
  transition: transform 0.3s, box-shadow 0.3s;
}

a:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #39ff14, 0 0 30px #39ff14;
}