*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html
{
  font-family: 'Roboto', sans-serif;
  width: 100%;
  height: 100%;
}
.game
{
  width: 100%;
  height: 100%;
  margin: auto;
}
.grid
{
  display: flex;
  justify-content: space-between;
  align-items: center;

}
.header
{
  background: #c0392b;
}
.game__title
{
  text-align: center;
  letter-spacing: 3px;
  font-size: 40px;
  color: #ffffff
}
.main
{
}
.game__score
{
  margin: 25px;
  font-size: 36px;
  font-weight: 400;
}
.game__player
{
  font-weight: 400;
  font-size: 36px;
  margin: 10px;
}
.game__computer
{
  text-align: right;
  font-weight: 400;
  font-size: 36px;
  margin: 10px;
}
.game__score
{
  font-size: 45px;
  font-weight: 400;
  margin: auto;
}
.game__tool-choosen
{
  flex-shrink: 1;
  flex-basis: 100px;
  max-width: 150px;

}
.game__tool-list
{

  display: flex;
  flex-direction: column;
  list-style-type: none;
  max-width: 100px;

}
.tool
{
  max-width: 100%;
  margin: 5px 0 5px 0;
  transition: transform 0.1s ease-out;

}

.tool--clickable:hover
{
  transform : scale(1.1);
  cursor: pointer;

}
.tool--hidden
{
  display: none;
}
.tool--show
{
  display: block;
}
.game__btn
{
  font-size: 20px;
  letter-spacing: 2px;
  color: #ffffff;
  background: #D72545;
  margin: auto auto 4% auto;
  flex-basis: 150px;
  height: 60px;
  text-align: center;
  border: 0;
  border-radius: 2px;
}
.game__btn:hover
{
  background: #E83656;
  cursor: pointer;
}
.game__VERSUS
{
  font-size: 36px;
}
.footer
{
  min-height: 40px;
  background-color: #c0392b;
  color: #ffffff;
  font-size: 34px;
}
.game__notification
{
  flex-grow: 1;
  text-align: center;
}
