body {
    background-color: black;
}

html,
body {
    height: 100%;
}

.star {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    opacity: 1;
    transition: opacity 1s linear;
}

.star:hover {
    opacity: 0;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.text {
    font-size: 36px;
    font-weight: bold;
    color: white;
    display: flex;
    flex-direction: column;
    /* stack items vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    max-width: 80%;
}

.subtext {
    font-size: 24px;
    /* smaller font size than .text */
    margin-top: 10px;
    /* add some margin to separate from the primary text */
}

#sparkleStyle {
    z-index: 1000;
    position: relative;
}
