body {
  font-family: "Sora", sans-serif;
  text-align: center;
  background: #082d2a;
}

.user_wrapper {
  display: none;
  flex-direction: row;
  align-items: center;
  z-index: 10;
  height: 100px;
  width: 100%;
  justify-content: center;
  position: fixed;
}

.user_name {
  font-size: 12px;
  color: #00d0df;
  font-weight: 600;
  margin-right: 10px;
}

.user_image_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 56px;
  height: 56px;
  position: relative;
}

.user_circle {
  width: 54px;
  height: 54px;
  border-radius: 27px;
  border: 2px solid #9afaa3;
  overflow: hidden;
}

.user_image {
  width: 56px;
  height: auto;
  background-size: cover;
}

.level_wrapper {
  background-color: #9afaa3;
  position: absolute;
  bottom: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  border-radius: 10px;
  padding: 0px 10px;
  left: 6px;
  width: 25px;
}

.level_icon,
.coin_icon {
  width: 12px;
  height: 12px;
}

.level {
  font-size: 12px;
  color: #082d2a;
  font-weight: 600;
  margin-left: 2px;
}

.player2 {
  margin-left: 10px;
  margin-right: 0;
}

.coin_wrapper {
  height: 30px;
  padding: 0px 15px;
  margin-left: -10px;
  margin-right: -10px;
  z-index: 10;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coins {
  font-size: 13px;
  color: #0fe880;
  font-weight: 600;
  margin-left: 3px;
  word-break: keep-all;
}

main {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

section {
  text-align: center;
  padding: 30px;
}

#field {
  padding: 30px;
}

#container {
  display: grid;
  grid-template-columns: repeat(3, auto);
  margin: auto;
}

.cell {
  font-family: "Finger Paint", sans-serif;
  color: #232d55;
  width: 100px;
  height: 100px;
  border: 1px solid #000;
  cursor: pointer;
  line-height: 100px;
  font-size: 60px;
  background: #00d0df;
}

@media only screen and (max-height: 500px) {
  .cell {
    width: 80px;
    height: 80px;
    font-size: 52px;
    line-height: 80px;
  }
}

#sidebar {
  min-width: 125px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#player {
  flex: 1;
}

#turns {
  flex: 1;
}

#status {
  flex: 4;
}

#restart {
  flex: 1;
}

#player1,
#player2 {
  box-sizing: border-box;
  background: #0fe880;
  border-radius: 4px;
  padding: 10px 8px;
  margin: 0 0 10px 0;
  color: #fff;
  border: 1px solid #0fe880;
}

#titleTurns {
  font-size: 0.8em;
  color: #fff;
}

#numberTurns {
  font-size: 1.4em;
  margin: 0;
  color: #fff;
}
