* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    background: black;
    font-family: "Segoe UI", sans-serif;
}

#starCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
}

#message-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;
    color: white;
    z-index: 10;
}

#message-container h1,
#message-container h2,
#message-container p {
    opacity: 0;
}

#message-container h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

#message-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

#message-container p {
    font-size: 1.2rem;
    color: #cccccc;
}

#final-scene {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    color: white;

    text-align: center;
}

#mainText {

    position: absolute;

    top: 40%;

    opacity: 0;

}


#finalImage {

    max-width: 80vw;

    max-height: 60vh;

    object-fit: contain;

    border-radius: 20px;

    opacity: 0;

    transform: scale(0.8);

}


#bottomText {

    position: absolute;

    bottom: 10%;

    font-size: 1.5rem;

    opacity: 0;

}