/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full-screen background effect */
body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
    background: #000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Star field */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.3;
    animation: moveStars 300s linear infinite;
}

/* Twinkling effect */
.twinkling {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 10%, rgba(0,0,0,0) 30%);
    animation: twinkle 2s infinite ease-in-out;
}

/* Keyframe for the star field movement */
@keyframes moveStars {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
}

/* Keyframe for twinkling effect */
@keyframes twinkle {
    0% { opacity: 0.2; }
    50% { opacity: 1; }
    100% { opacity: 0.2; }
}

/* Main content styling */
.content {
    z-index: 2;
    text-align: center;
    animation: fadeIn 2s ease-out;
}

h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    background: linear-gradient(45deg, #ff7c7c, #ff0066, #00b8d4);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    animation: glow 1.5s ease-in-out infinite;
}

p {
    font-size: 1.2em;
    margin-top: 10px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3);
}

a {
    text-decoration: none;
    color: #00b8d4;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff7c7c;
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes glow {
    0% { text-shadow: 0 0 5px #ff7c7c, 0 0 10px #ff7c7c; }
    50% { text-shadow: 0 0 15px #ff0066, 0 0 30px #ff0066; }
    100% { text-shadow: 0 0 5px #ff7c7c, 0 0 10px #ff7c7c; }
}
