@charset "UTF-8";
body {
  background: #fff;
  font-family: 'Lemonada', cursive;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1 {
  font-family: 'Lemonada', cursive;
  line-height: 0.7;
  margin: 0 auto;
  text-align: left;
  width: 1.875em;
}

h2 {
  font-family: 'Lemonada', cursive;
  line-height: 1.7;
  margin: 0 auto;
  text-align: :right;
  width: 400px;
  color: white
  
}

.button {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
  display: inline-block;
  padding: 1.25em 3em;
  text-decoration: none;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}
.button:hover {
  color: #000;
}

.screen {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
 
}
.screen header {
  position: relative;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
}
.screen h1 {
  color: #fff;
}
.screen p {
  color: #fff;
}
.screen-start {
  background: linear-gradient(90deg, #00838f 0%, #000851 100%);
}
.screen-start h1 {
  font-size: 6em;
}
.screen-start h2 {
  font-size: 4em;
}
.screen-start input {
  display: block;
  text-align: center;
  margin: auto;
  margin-top: 3%;
  margin-bottom: 3%;
}
.screen-start .button {
  color: #000851;
  background: linear-gradient(90deg, #00838f 0%, #000851 100%);
}
.screen-start h1 + .button {
  margin-top: 5em;
}
.screen-win p {
  font-size: 6em;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.screen-win p:before {
  position: absolute;
  left: 0;
  right: 0;
  color: #000;
  font-size: 4em;
  font-weight: 400;
  line-height: 0;
  z-index: -1;
}
.screen-win-tie {
  background: #54d17a;
}
.screen-win-one {
  background: #1565c0;
}
.screen-win-one .button {
  color: #00838f;
}
.screen-win-one p:before {
  content: "o";
  top: 1.75rem;
}
.screen-win-two {
  background: #00838f;
}
.screen-win-two .button {
  color: #1565c0;
}
.screen-win-two p:before {
  content: "×";
  top: 4.5rem;
}

.board {
  padding-top: 1em;
}
.board h2 {
  margin-top: 4em;
}

.players {
  color: rgba(0, 0, 0, 0.2);
  text-align: center;
  position: absolute;
  top: 1rem;
  width: 35%;
  padding: 1.25em 0 1em;
  outline: 1px solid #ccc;
  transition: 1s;
}
.players svg g {
  fill: rgba(0, 0, 0, 0.25);
}
.players:first-child {
  left: 2.5%;
}
.players:last-child {
  right: 2.5%;
}
.players-turn {
  outline: none;
}
#player1.active svg g,
#player2.active svg g {
  fill: #fff;
}
#player1.active {
  background: #1565c0;
}
#player2.active {
  background: #00838f;
}

.boxes {
  width: 480px;
  margin: 3em auto 0;
}
.boxes .box {
  background: #efefef;
  border-radius: 4px;
  width: 150px;
  height: 150px;
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 1.75em;
  cursor: pointer;
  box-sizing: border-box;
  transition: 0.2s ease;
  background-size: 100px 100px;
  background-repeat: no-repeat;
  background-position: center center;
}
.boxes .box:nth-child(3n) {
  margin-right: 0;
}
.boxes .box-filled-1 {
  background-color: #1565c0;
  background-image: url(../img/o.svg);
}
.boxes .box-filled-2 {
  background-color: #00838f;
  background-image: url(../img/x.svg);
}

.namespot {
  color: black;
  margin: 0;
}


.olamideo {
  color: white;
 
  
}