body {
    background-color: black;
    margin: 0px;
    overflow: hidden
}
footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
    color: white;
}
#sun {
    background-color: gold;
    border-radius: 50%;
    height: 150px;
    width: 150px;
    box-shadow: 0px 0px 20px 10px gold;
}
#venus{
    background-color: gold;
}
#earth{
    background-color: blue;
    height: 50px;
    width: 50px;
}
#mars{
    background-color: red;
    height: 40px;
    width: 40px;
}
#jupiter{
    background-color: orange;
    height: 100px;
    width: 100px;
}
#saturn{
    background-color: brown;
    height: 80px;
    width: 80px;
}
#uranus{
    background-color: lightblue;
    height: 70px;
    width: 70px;
}
#neptune{
    background-color: darkblue;
    height: 65px;
    width: 65px;
}
#pluto{
    background-color: gray;
}
#mercury{
    background-color:red;
    width: 20px;
    height: 20px;
}
.solarsystem {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    height: 95vh;
}
.planet {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    background-color: gray;
    transition: transform 0.3s;
}
.planet:hover {
    transform: scale(1.5);
}
.shootingstar {
    position: absolute;
    top: 10px;
    left:-50px;
    height:2px;
    background: linear-gradient(to right, transparent, white, transparent);
    width: 8px;
    opacity: 0.8;
    background-color: white;
    animation: shootingstar 5s linear infinite;
    box-shadow: 0px 0px 2px 2px whitesmoke;
}
.star {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    animation: glow 1.5s infinite alternate; 
    top: var(--top,100px);
    left: var(--left,100px);   
}
@keyframes glow {
    from {
        opacity: 0.5s;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1.5);
    } 
}  
@keyframes shootingstar {
    0% {
        top: 10px;
        left: -50px;
        transform: rotate(45deg);
    }
    50% {
        top: 90vh;
        left: 110vh;
        transform: rotate(225deg);
    }
    100% {
        top: 90vh;
        left: 110vh;
        transform: rotate(45deg)
    }
}
.InfoBox {
    position: absolute;
    bottom:10%;
    left: 50%;
    color: white;
    padding: 20px;
    border-radius:10%;
    display: none;
    z-index: 1500; /* Ensure it's on top of other elements */
    background-color: gray;
}