/* Main Containers */
body, button {
  font-family: VT323;
}
button {
  font-size: xx-large;
}
h1 {
    margin-top: 0;
    padding: 0;
}

.outer-container {
  height: 720px;
  width: 1280px;
  background: #eee;
  border: 5px solid gainsboro;
  position: relative;
}

.game-window {
  height: 720px;
  width: 1280px;
  float: left;
}




/* Main Menu */




#main_menu_screen {
  height: 720px;
  width: 1280px;
  background-image: url(../src/frontpage_background.jpg);
  position: absolute;
}

#main_menu_header{
  width: 100%;
  height: 100px;
  background-color: darkslateblue;
  border-bottom: 6px;
  border-bottom-style: groove;
  font-size: 50px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.asteroid {
  height: 100px;
  width: auto;
}

.main_menu_buttons {
  width: 200px;
  height: 100px;
  margin-top: 30px;
  background-color: darkslateblue;
  border-color: black;
  font-size: 40px;
  align-items: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 90px;
  transform: translate(540px, 100px);
}



/* Settings */



#settings_screen {
  width: 600px;
  height: 690px;
  background-color: darkslateblue;
  border: 5px solid gainsboro;
  text-align: center;
  color: white;
  font-size: 50px;
  position: absolute;
  transform: translate(55%, 1%);
  display: none;
}

.settings_buttons {
  width: 180px;
  height: 100px;
  background-color: purple;
  color: white;
}

#easy {border-color: white;}
#normal {border-color: yellow;}
#hard {border-color: white;}

#settings_close_button {
  width: 180px;
  height: 100px;
  background-color: purple;
  color: white;
  justify-content: center;
  margin-top: 50px;
}

.slidecontainer {
  width: 80%;
}

.slider {
  -webkit-appearance: none;
  width: 80%;
  height: 25px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #04AA6D;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #04AA6D;
  cursor: pointer;
}



/* How to Play */



#tutorial_screen {
  height: 720px;
  width: 1280px;
  text-align: center;
  margin: 0;
  position: absolute;
  display: none;
}

.tutorial_pics {
  width: 100px;
  height: 100px;
}
  
#htp {font-size: 75px;}

.words {
  font-size: 50px;
  margin: 20px 20px 20px 20px;
}

#tutorial_start {
  width: 200px; 
  height: 75px;
  margin: 20px 20px 20px 20px;
}


/* Game Section --- Right Section */

#actual_game{
    height: 720px;
    width: 1280px;
    background-color: white;
    z-index: 10;
    right: 0px;
    top: 0px;
    display: none;
}

#get_ready {
  width: 60%;
  height: 95%;
  position: absolute;
  transform: translate(27%, 30%);
  text-align: center;
}
#get_ready_header {font-size: 75px;}
#get_ready_text {font-size: 50px;}

#game_right_section {
    height: 600px;
    width: 320px;
    position: absolute;
    left: 960px;
    top: 0px;
    color: black;
    z-index: 1;
}

#scoreword, #danger, #level {
  text-align:center;
  font-size: 60px;
}

#score_num, #danger_num, #level_num {
  text-align: center;
  font-size: 40px;
  color: darkblue;
}

#player {
  position: absolute;
  width: 62px;
  left: 600px;
  top: 300px;
  z-index: 9;
}

.curAstroid {
  position: absolute;
  height: 42px;
  width: 42px;
  z-index: 9;
  right: 0px;
  top: 0px;
}

.curAstroid img{
  position: relative;
  z-index: 10;
  height: 80px;
  left: -17px;
  top: -15px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

#rocket {
  position: absolute;
}

#shield {
  position: absolute;
  display: none;
}

#portal {
  position: absolute;
  display: none;
}


/* Game Over*/

#game_over_screen {
  height: 720px;
  width: 1280px;
  background-image: url(../src/frontpage_background.jpg);
  position: absolute;
  display: none;
}

#game_over_header{
  width: 100%;
  height: 100px;
  background-color: darkslateblue;
  border-bottom: 6px;
  border-bottom-style: groove;
  font-size: 50px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#start_over_window {
  width: 500px;
  height: 200px;
  background-color: darkslateblue;
  text-align: center;
  color: white;
  font-size: 20px;
  position: absolute;
  left:400px;
  top: 300px;
}