* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: sans-serif;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
}
.wrap {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
}
.left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.colors-wrap {
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  display: grid;
  gap: 24px;
  padding: 24px;
  border: solid 1px white;
}
.color-wrap {
  height: 48px;
  width: 48px;
  border: solid 1px white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.color {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.color.yellow {
  background-color: yellow;
}
.color.red {
  background-color: red;
}
.color.blue {
  background-color: blue;
}
.color.green {
  background-color: green;
}
.color.purple {
  background-color: purple;
}
.color.orange {
  background-color: orange;
}
.go {
  width: 100%;
  padding: 16px;
}
.right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 0;
}
.score-row {
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  display: grid;
  gap: 8px;
  padding: 8px;
  height: 66px;
  width: 66px;
  border: solid 1px white;
}
.score-wrap,
.bool {
  height: 20px;
  width: 20px;
  border: solid 1px white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
}
.pgiah {
  height: 20px;
  width: 20px;
  border: solid 1px white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.center {
  width: 100%;
  max-width: 400px;
}
.game {
  display: flex;
  flex-direction: column;
  border: solid 1px white;
  min-height: 90vh;
  padding: 24px;
  gap: 24px;
}
.row {
  border: solid 1px white;
  display: flex;
  justify-content: space-around;
  padding: 8px;
}
