body {
    font-family: Arial, sans-serif;
    background-color: #000000f6;
    color: #fff;
    margin: 0;
    text-align: center;
    padding: 20px;
}
h1 {
    color: #00a2ff;
}


.gradient-text {
font-size: 3rem;
font-weight: bold;
background: linear-gradient(270deg, #ff416c, #ff4b2b, #f9d423, #24fe41, #00c6ff, #ff416c);
background-size: 600% 600%;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: gradientMove 20s ease-in-out infinite;
}

@keyframes gradientMove {
0% {
    background-position: 0% 50%;
}
50% {
    background-position: 100% 50%;
}
100% {
    background-position: 0% 50%;
}
}


h2 {
    color: #ffcc00;
}
a {
    color: #029aff;
    text-decoration: none;
    font-weight: bold;
    font-family: Poppins, sans-serif;
    transition: color 0.3s ease;
}
a:hover {
    text-decoration: underline;
    color: #46eb21;
}
p {
    font-size: 1.2em;
    color: #fff;
}
footer {
    margin-top: 20px;
    font-size: 0.8em;
    color: #ccc;
}
footer a {
    color: #00ff00;
}