* {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  font-family: 'Courier New', Courier, monospace;
}

#game {
  width: 1024px;
  height: 768px;
  border-bottom: 0.5px solid black;
  overflow: hidden;
}

.player {
  width: 50px;
  height: 10px;
  background-color: black;
  position: relative;
}

.bullet {
  width: 1px;
  height: 20px;
  background-color: red;
  position: absolute;
}

.invader {
  text-align: center;
  position: absolute;
}

#control {
  display: flex;
  justify-content: center;
  align-content: space-between;
  
  width: 100%;
  padding-top: 20px;
}

#control .button {
  height: 40px;
  border: 1px dashed gray;
  color: gray;
}

#control .button.active {
  height: 40px;
  border: 1px solid black;
  color: black;
}

#control .button.pressed {
  font-weight: 600;
}

.button.shoot {
  width: 300px;
  text-align: center;
  line-height: 40px;
  margin-right: 200px;
}

.button.move {
  width: 40px;
  text-align: center;
  line-height: 40px;
  margin: 0 20px;
}

.oops {
  position: absolute;
  font-size: 3em;
  color: gray;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}


/* flowers — redo */
.flower-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: serif;
  /* background-color: rgb(243, 243, 243); */
}
.flower-container .flower-row {
  display: flex;
  flex-direction: row;
  align-content: flex-start;
}
.flower-container .flower-row .flower-element {
  font-size: 1.5em;
  width: 1em;
  height: 1em;
  /* background-color: pink; */
  /* font-weight: bold; */
  margin: 2px;
  border-radius: 50%;
  position: relative;
  text-align: center;
  vertical-align: middle;
}
