/* Apply a blurred background image */
body {
    background-image: url('images/exoplanet.jpg');
    background-size: cover;
    color: white;
    background-position: center;
    position: relative; /* Required for pseudo-element positioning */
    text-align: center;
}

/* Initially hide the elements */
#element-container {
    display: none;
}

#img-div{
        margin-top: 5px;
        margin-bottom: 20px;
     
}

h1{
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 100px;
}

/* Pseudo-element for the blurred background */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: inherit;
    filter: blur(10px); /* Adjust the blur intensity as needed */
    z-index: -1; /* Place the pseudo-element behind other content */
}

/* Center the button on the screen */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}
