@import url(https://fonts.googleapis.com/css?family=Monoton);
* {
  box-sizing: border-box; }

body, html {
  margin: 0;
  padding: 0;
  height: 100vh; }

i {
  font: normal normal 12vw/1 "Monoton", cursive;
  color: #fff; }
  @media (min-width: 768px) {
    i {
      font-size: 7vw; } }
  @media (min-width: 1500px) {
    i {
      font-size: 5vw; } }

h2 {
  font-family: 'Monoton', cursive;
  margin: 20px auto;
  line-height: 1em; }
  h2 span {
    color: #a65959; }

p {
  font: normal normal 1em/1 sans-serif;
  margin: 0; }

main {
  background: linear-gradient(#b3b272, #76c2f2); }

.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; }

button {
  min-width: 48px;
  min-height: 48px;
  margin: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 2em;
  transition: all 0.2s ease;
  transform: scale(1, 1); }
  button:hover {
    background-color: #a65959;
    transform: scale(1.3, 1.3); }

.board {
  width: 85vw;
  height: 85vw;
  padding: 15px;
  background-color: black;
  border-radius: 5px;
  box-shadow: 0 0 0 15px #a65959, 0 0 5px 15px black; }
  @media (min-width: 568px) {
    .board {
      width: 60vw;
      height: 60vw; } }
  @media (min-width: 768px) {
    .board {
      width: 50vw;
      height: 50vw; } }
  @media (min-width: 1024px) {
    .board {
      width: 40vw;
      height: 40vw; } }
  @media (min-width: 1500px) {
    .board {
      width: 30vw;
      height: 30vw; } }

.row {
  width: 100%;
  display: flex;
  justify-content: center; }

.board-row {
  height: 33.33%; }

.cell {
  width: 33.33%;
  height: 100%;
  border: 3px solid #a65959;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease;
  -moz-user-select: none;
  user-select: none; }

.cell-top {
  border-top: 0px; }

.cell-bottom {
  border-bottom: 0px; }

.cell-left {
  border-left: 0px; }

.cell-right {
  border-right: 0px; }

.modal-container {
  position: fixed;
  height: 100vh;
  z-index: -10;
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.38, 0.17, 0.63, 1.3); }
  .modal-container::before {
    content: "";
    position: fixed;
    width: 100%;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.8; }

.modal {
  display: block;
  width: 300px;
  height: 200px;
  border-radius: 5px;
  box-shadow: 0 0 3px 1px #000, 0 0 20px 5px #a65959;
  background-color: #fff;
  z-index: 11;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transform: scale(0.6, 0.6);
  transition: all 0.5s cubic-bezier(0.38, 0.17, 0.63, 1.3); }

.dim {
  opacity: 1;
  z-index: 10; }

.modal-active {
  transform: scale(1, 1); }

.winner {
  background-color: #cc3333; }

/*# sourceMappingURL=style.css.map */
