/* Background Style*/
html, body{
    background-color: black;
}

canvas{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; 

}

/* Question Style */
.correctexplanation{
    display: none;
}

.incorrectexplanation{
    display: none;
}

body {
    color: white;
    text-align: center;
    font-family:'Courier New', Courier, monospace;
}
img {
    height: 500px;
    margin-top: 20px;
    position:relative;
    z-index:1;
}

#saturn {
    height: 550px;
}

button {
    color: white;
    background-color: black;
    box-shadow: 0px 0px 20px 5px white;
    padding: 30px;
    margin: 30px;
    font-size: 20px;
    width: 30%; 
    border-radius: 15px;
    font-family:'Courier New', Courier, monospace;
    position:relative;
    z-index:1;
}

button:hover {
    transform: scale(110%);
}

div {
    padding: 30px;
    font-size: 20px;
}


h3 {
    font-size: 50px;
    padding-bottom: 50px;
    text-shadow: 0px 0px 20px white;
}


h1 {
    font-size: 50px;
    padding-top: 50px;
    text-shadow: 0px 0px 20px white;
}

#solarsystem {
    height: max-content;
    width: 100%;
}

#startquiz {
    font-size: 50px;
    color: white;
    text-shadow: 0px 0px 20px white;
    padding-bottom: 50px;
}

#startquiz:hover{
    text-shadow: 0px 0px 20px blue;
}

#startquiz:active{
    color: blue;
    text-shadow: 0px 0px 20px white;
}

h2 {
    margin: 60px;
}