* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  background: #1daf9e;
  font-family: "Open Sans", sans-serif;
}
.game {
  width: 100%;
  max-width: 700px;
  height: 70vh;
  border: 2px solid #fff;
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 10px;
}
.player_items {
  margin-bottom: 0;
  margin-top: 10px;
}
.item {
  width: 33%;
}
.item img {
  max-width: 100%;
  height: 100%;
  border-radius: 50%;
}
.player-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.player_count {
  max-width: 150px;
  height: 50px;
  border: none;
  background: #fff;
  border-radius: 3px 0 0 3px;
  font-size: 40px;
  text-align: center;
  outline: none;
  box-shadow: 0 14px 28px rgba(0,0,0,0.25),
                  0 10px 10px rgba(0,0,0,0.22);
}
.player_count-btn {
  width: 50px;
  height: 50px;
  background: #eb0172;
  color: #fff;
  border: none;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0,0,0,0.25),
                  0 10px 10px rgba(0,0,0,0.22);
}
button[disabled],
input[disabled] {
  cursor: default;
  opacity: 0.3;
}
.choice {
  width: 90px;
  height: 35px;
  margin: 15px 10px;
  border: none;
  outline: none;
  border-radius: 3px;
  cursor: pointer;
  background: #eb0172;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.25),
                  0 10px 10px rgba(0,0,0,0.22);
}
.play {
  background: #fff;
  width: 130px;
  height: 40px;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 25px;
  font-weight: bold;
  border-radius: 4px;
  color: black;
  box-shadow: 0 14px 28px rgba(0,0,0,0.25),
                  0 10px 10px rgba(0,0,0,0.22);
  text-shadow: #1daf9e 1px 0 10px;
}

.hide {
  display: none;
}
.play_text {
  color: #fff;
  width: 100%;
  font-size: 24px;
  height: 70px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.game_results {
  width: 320px;
  height: 70vh;
  border: 2px solid #fff;
  border-radius: 0 10px 10px 0;
  color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
}
.game_results div {
  padding: 5px;
  font-size: 14px;
  border-bottom: 1px solid #fff;
}
.game_results strong {
  font-size: 16px;
  color: #ff7bba;
}
.comp_total,
.player_total {
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 50px;
  display: none; /*to test use: for developers purpose only,- remove "display: none;" - you will see the both players score on the play yard*/
}
/* collapse bar*/
.collapsible {
      background-color: #777;
      color: black;
      cursor: pointer;
      padding: 18px;
      width: 100%;
      border: none;
      text-align: left;
      outline: none;
      font-size: 20px;
      position: fixed;
      z-index: 1;
    }
    .active,
    .collapsible:hover {
      background-color: #555; 
    }
    .contents {
      padding: 0 18px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease-out;
      background-color: #fff;
      margin: 59px 0 0 0;
      position: fixed;
      box-shadow: 0 14px 28px rgba(0,0,0,0.25),
                  0 10px 10px rgba(0,0,0,0.22);
      text-shadow: black 1px 0 10px;
      border-radius: 0 0 5px 5px;
    }
/*Footer*/
footer{
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  background: #111;
  height: auto;
  width: 100%;
  padding-top: 0;
}
.socials {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 10px 0;
}
.socials li {
  margin: 0 20px;
}
.socials li a {
  color: #fff;
  transition: color .4s ease;
}
.socials a:hover {
  color: aqua;
}
.hidden {
  color: #716a6a;
  font-size: 12px;
  text-transform: capitalize;
  -webkit-text-stroke-width: thin;
  flex: auto;
}
/* page 404 */
#not-found {
  text-align: center;
  color: #ffffff;
  font-weight: 800;
}

.error-text {
  margin-bottom: 15px;
  padding: 15px;
  font-size: 1.25em;
  background-color: #DC3535;    
}

.error-container {
  display: flex;
  justify-content: center;
}

.image-container {
  padding: 5px;
  border-radius: 50%;
}

.error-image {
  height: 350px;
  width: 100%;
}

#central-image {
  border-radius: 50%;
}

.back-btn {
  background-image: -webkit-linear-gradient(top, #170055, #480032);
  background-image: -moz-linear-gradient(top, #170055, #480032);
  background-image: -ms-linear-gradient(top, #170055, #480032);
  background-image: -o-linear-gradient(top, #170055, #480032);
  background-image: linear-gradient(to bottom, #170055, #480032);
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  font-family: Georgia;
  color: #ffffff;
  font-size: 20px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

.back-btn:hover {
  background: #144d38;
  text-decoration: none;
}
/*media*/
@media (max-width: 1100px) {
  .game {
    max-width: 600px;

  }
  .player_count {
    max-width: 100px;
  }
  .choice {
    width: 85px;
    margin: 15px 5px;
  }
  .game_results {
    width: 250px;
  }
  .hidden {
    display: none;
  }
}
@media (max-width: 900px) {
  body {
    padding-bottom: 64px;
  }
  .game {
    max-width: 500px;
  }
  .items {
    justify-content: flex-start;
  }
  .item:first-child {
    width: 100px;
    height: 100px;
  }
  .item:nth-child(2) {
    width: 100px;
    height: 100px;
  }
  .item:nth-child(3) {
    flex-grow: 1;
  }
  .hidden {
    display: none;
  }
}
@media (max-width: 780px) {
  .game {
    max-width: 400px;
  }
  .play_text {
    font-size: 18px;
    height: 55px;
  }
  .hidden {
    display: none;
  }
}
@media (max-width: 680px) {
  .game {
    max-width: 300px;
  }
  .item:first-child {
    display: none;
  }
  .choice {
    font-size: 12px;
    margin: 5px;
    width: 65px;
  }
  .player_count {
    max-width: 95px;
    height: 40px;
    font-size: 35px;
  }
  .player_count-btn {
    height: 40px;
  }
  .hidden {
    display: none;
  }
}
@media (max-width: 600px) {
  .game_results {
    width: 170px;
  }
  .game {
    width: 180px;
  }
  .play_text {
    font-size: 15px;
  }
  .items {
    flex-direction: column;
  }
  .items .item {
    width: 100%;
  }
  .hidden {
    display: none;
  }
}

