/* 
	Name: Jamal Omar Al-Derawi
	Email: jamalo.dirawi@gmail.com
*/

/* Global Style */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --color-main: #242329;
  --bg-color: #01c4ad;
  --text-color: #896ab9;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-color);
  color: var(--color-main);
  height: 100vh;
}
/* End Global Style */

.game {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title {
  padding: 20px 0 20px 0;
  font-size: 80px;
  text-align: center;
}

.score {
  display: flex;
  width: 30vw;
  justify-content: space-evenly;
  top: 70px;
  z-index: 1;
}

.p-count,
.c-count {
  text-align: center;
  font-size: 30px;
  margin-top: 10px;
}

.options {
  display: flex;
  width: 50%;
  justify-content: space-evenly;
  margin-top: 20px;
}
.images {
  margin-top: 20px;
  display: flex;
  width: 50%;
  justify-content: space-evenly;
}
.images img {
  width: 100px;
}

.rock,
.paper,
.scissor {
  padding: 15px;
  width: 100px;
  font-size: 18px;
  border-radius: 10px;
  background: var(--text-color);
  outline: none;
  border-color: var(--text-color);
  border: none;
  cursor: pointer;
}

.move {
  font-size: 20px;
  font-weight: bold;
}

.reload {
  display: none;
  margin-top: 20px;
  padding: 10px;
  background: var(--text-color);
  outline: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.result {
  margin-top: 20px;
  font-size: 15px;
}

@media screen and (max-width: 767px) {
  .title {
    font-size: 45px;
  }
  .score {
    top: 200px;
    width: 100vw;
  }
  .options {
    width: 80%;
  }
  .images {
    width: 50px;
  }
  .images img {
    width: 70px;
  }
  .rock,
  .paper,
  .scissor {
    margin: 0 10px;
  }
}
