@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: black;
    color: white;
    text-align: center;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.stars, .twinkling {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.stars {
    background: url('https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExOWFwcnQ4dHNncDU5ZG1hajQxb3VsbXBqcjQ0a2hhczVua2VmcWpyMSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/UYBDCJjwOd9Re/giphy.gif') repeat top center;
    animation: move-stars 50s linear infinite;
}

.twinkling {
    background: url('https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExOWFwcnQ4dHNncDU5ZG1hajQxb3VsbXBqcjQ0a2hhczVua2VmcWpyMSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/UYBDCJjwOd9Re/giphy.gif') repeat top center;
    animation: move-twinkle 100s linear infinite;
}

@keyframes move-stars {
    from { background-position: 0 0; }
    to { background-position: -10000px 5000px; }
}

@keyframes move-twinkle {
    from { background-position: 0 0; }
    to { background-position: -10000px 5000px; }
}

.content {
    position: relative;
    z-index: 1;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.5em;
}
