* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  height: 100vh;
  background-color: rgb(95, 95, 95);
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body h1 {
  background-color: rgba(255, 0, 0, 0.5);
  text-align: center;
  padding: 15px;
  font-size: 50px;
  border-radius: 100vh;
  border: 5px solid;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  body h1 {
    position: absolute;
    top: 20px;
    width: 100%;
    font-size: 50px;
  }
}
body .reset {
  width: 200px;
  height: 200px;
  position: absolute;
  right: 100px;
  bottom: 20px;
  font-size: 100px;
  border-radius: 15px;
  border: 2px solid;
  background-color: rgba(0, 0, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
body .reset:hover {
  background-color: rgba(0, 0, 255, 0.5);
}
@media screen and (max-width: 600px) {
  body .reset {
    width: 30vw;
    height: 30vw;
    right: 25px;
  }
}
body .winner {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 100px;
  bottom: 20px;
  font-size: 20px;
  border-radius: 15px;
  border: 2px solid;
  background-color: rgba(0, 0, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  body .winner {
    width: 50vw;
    height: 30vw;
    left: 25px;
  }
}
body .winner span {
  font-size: 80px;
}
@media screen and (max-width: 600px) {
  body .winner span {
    font-size: 50px;
  }
}

#table {
  width: 600px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  #table {
    width: 100%;
    margin-bottom: 30px;
  }
  #table .tile {
    width: 30%;
    font-size: 70px;
  }
}

.tile {
  aspect-ratio: 1/1;
  width: 32%;
  border: 2px solid;
  margin: 4px;
  border-radius: 2vh;
  font-size: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(240, 255, 255, 0.2);
  cursor: pointer;
}
.tile:hover {
  background-color: rgba(240, 255, 255, 0.5);
}

.win {
  background-color: rgba(30, 255, 0, 0.2);
}/*# sourceMappingURL=base.css.map */