* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f4f4f4;
}

h1 {
  font-size: 4rem;
}

/* Utils */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 80vw;
  margin: auto;
  letter-spacing: 0.4rem;
  line-height: 1.4;
}

.row {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 50vw;
}

.box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 6rem;
  background: #333;
  color: #f4f4f4;
  border: 1px solid black;
  font-size: 5rem;
  transition: all 0.3s ease;
  margin: 0.25rem 0.25rem;
  padding-bottom: 0.7rem;
  padding-left: 0.2rem;
}

.box:hover {
  background: #f4f4f4;
  color: #333;
  border-radius: 10%;
}

.winner {
  background: rgb(218, 175, 68);
  color: black;
}

/* Score Area */
.score-area {
  margin: 1rem 0;
}

.score-area > :first-child {
  border-bottom: 5px solid #333;
}
.score-area .row {
  justify-content: space-evenly;
  font-size: 2rem;
}

#current-player {
  font-size: 2rem;
}

/* Game end */
#eog {
  display: flex;
  flex-direction: column;
  align-content: center;
}

/* button */
button {
  border: 1px solid inherit;
  border-radius: 5px;
  background: rgb(126, 134, 8);
  text-transform: uppercase;
  font-size: 2rem;
  padding: 0.5rem 2rem;
  display: block;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: all 0.4s ease-in;
}

button:hover {
  border: 1px solid rgb(126, 134, 8);
  background: transparent;
  letter-spacing: 10px;
  font-weight: 700;
}
