Hub
body {
background-color: #1e1e1e;
color: #ffffff;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
h1 {
font-size: 4em;
position: relative;
animation: glow 1.5s ease-in-out infinite alternate;
}
@keyframes glow {
0% {
text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff;
}
100% {
text-shadow: 0 0 20px #ffffff, 0 0 30px #ffffff, 0 0 40px #ffffff;
}
}
button {
cursor: pointer;
background-color: #ffffff;
color: #1e1e1e;
padding: 15px 30px;
border: none;
border-radius: 5px;
box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5);
}
a {
text-decoration: none;
color: #ffffff;
padding: 10px 20px;
border-radius: 5px;
}