body {
    background-color: black;
}

* {
    color: white;
}

.parent-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 95vh;
}

.content-container {
    justify-items: center;
    align-items: center;
}

img {
    height: 64px;
    width: 64px;
}

.collabs {
    display: flex;
    justify-content: center;
}

@keyframes starfade{
    0% {
        opacity: 0;
        width: 0;
        height: 0;
    }
    10% {
        opacity: 1;
        width: 4px;
        height: 4px;
    }
    100% {
        opacity: 0;
        width: 0;
        height: 0;
        transform: translateY(10px);
    }
}

.star {
    position: fixed;
    x: 0;
    y: 0;
    background-color: white;
    width: 2px;
    height: 2px;
    animation: starfade 30s linear;
}

.countdown {
    font-size: 10vw;
    color: white;
}

.reminder {
    color: white;
    text-align: center;
    font-size: 1vmax;
    margin-bottom: 0px;
    margin-top: 0px;
    font-style: italic;
}

.reminder-translation {
    color: white;
    opacity: 0.5;
    text-align: center;
    font-size: 0.7vmax;
    margin-bottom: 24px;
    margin-top: 0px;
    font-style: italic;
}

.celestial {
    margin-left: 20px;
    text-align: center;
    text-decoration: none;
}