@import url('https://fonts.googleapis.com/css?family=Mina&display=swap');
@import url('https://fonts.googleapis.com/css?family=Space+Mono&display=swap');



header{
    height: 120px;
    font-family: 'Space Mono', monospace;
    font-weight: bold;
    font-size: 50px;
    line-height: 40px;
    color: silver;
    text-align: left;
    padding: 10px;
}

body{
    background-image: url("../images/spacebackground2.jpg");
    background-repeat: no-repeat;
    background-size: 100% 1600px;
}

footer{
    bottom: 0px;
    position: fixed;
    height: 30px;
    width: 100%;
    background-color: silver;
    text-align: center;
    font-size: 10px;
    color: black;
}

#subHeading {
    font-size: 25px;
    font-style: oblique;
    color: grey;
}

#gamesWon {
    font-size: 30px;
}

#gamesLost {
    font-size: 30px;
}

.score{
    font-size: 75px;
}

#shuttle{
    position: absolute;
    z-index: 1;
}

#moon{
    position: absolute;
    right: 40px;
}

#earth{
    position: absolute;
    left: 40px;
}

#scoreBoard {
    position: relative;
    top:100px;
    height: 100px;
    box-sizing: border-box;
    text-align: center;
    font-size: 25px;
    font-family: 'Mina', sans-serif;
    font-weight: bold;
    color: yellow;
}

#latest {
    font-family: 'Mina', sans-serif;
    font-weight: bold;
    font-size: 40px;
    color: yellow;
}

#targetNumber {
    font-family: 'Mina', sans-serif;
    font-weight: bold;
    font-size: 40px;
    color: yellow;
}

#scoreBoardMsg{
    font-size: 30px;
    color: orange;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
}

@media screen and (max-width: 979px){
    header { font-size: 40px; }
    #scoreBoardMsg { font-size: 30px;}
    #scoreBoard { font-size: 25px;
        line-height: 30px; }
    #gamesWon { font-size: 25px; }
    #gamesLost { font-size: 25px; }
    
}


@media screen and (max-width: 767px){
    header { font-size: 30px; }
    #subHeading { font-size: 15px; }
    #scoreBoardMsg { font-size: 20px;}
    #scoreBoard { font-size: 15px;
        line-height: 20px; }
    #gamesWon { font-size: 15px; }
    #gamesLost { font-size: 15px; }
    }     
    
@media screen and (max-width: 639px){
    header { font-size: 20px; }
    #scoreBoardMsg { font-size: 20px;}
    #scoreBoard { font-size: 15px;
                    line-height: 15px; }
    #gamesWon { font-size: 20px; }
    #gamesLost { font-size: 20px; }
}


