body {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #222222;
}

* {
  font-family: Roboto, Poppins, Montserrat, "Segoe UI", Tahoma, Geneva, Verdana,
    sans-serif;
  font-weight: 300;
}

h1 {
  font-weight: 300;
  font-size: 36px;
  margin-right: auto;
  color: #ff0078;
  padding: 0em 1.2em;
  border: 1px solid #ff0078;
}

strong {
  font-weight: 500;
}

.top {
  width: 850px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.button {
  font-size: 18px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 2px;
  height: 2.4em;
  margin-left: 20px;
  justify-self: flex-end;
  width: 8em;
  transition: 0.2s ease-in;
  outline: none;
}

.green {
  border: 1px solid #a3ff00;
  color: #a3ff00;
}

.blue {
  border: 1px solid #18ffff;
  color: #18ffff;
}

.primary {
  justify-self: flex-end;
  background-color: #8e0084;
  color: white;
  border: none;
}

.green:hover {
  background-color: #a3ff00;
  color: #222222;
  font-weight: 500;
}

.blue:hover {
  background-color: #18ffff;
  color: #222222;
  font-weight: 500;
}

.modal {
  z-index: 2;
  position: absolute;
  top: 120px;
  width: 720px;
  max-height: 580px;
  padding:40px;
  background-color: #f4f4f5;
  display: none;
}

.modalContent {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
}

.modalContent h2 {
  font-weight: 300;
  font-size: 32px;
  justify-self: flex-start;
}

.exactContent {
  padding: 1em 4em 1em 4em;
  overflow: hidden scroll;
}
.exactContent p {
  line-height: 40px;
}
.tick {
  color: #b700ad;
  margin-right: 5px;
}
.show {
  z-index: 4;
  display: inline-block;
}

#lives {
  color: tomato;
}

#mainScore {
  color: #18ffff;
}

.left {
  padding-top: 50px;
  display: inline-block;
  flex-direction: column;
}

.left h2 {
  color: white;
  font-weight: 500;
}
.leftContent {
  width: 800px;
  height: 500px;
}

.leftContent p {
  color: white;
  text-align: left;
  line-height: 30px;
  font-weight: 200;
}

.gameOverContent {
  display: flex;
  flex-direction: row;
}

.gameOverContent img {
  width: 300px;
  overflow: hidden;
  height: 230px;
}
.gameOverContent .vertic p {
  line-height: 30px;
  padding: -10px;
}
.gameOverContent .vertic {
  display: flex;
  flex-direction: column;
  width: 400px;
  margin-left: -60px;
  padding-top: 20px;
  align-items: flex-start;
  justify-content: flex-start;
}
