* {
  margin: 0;
  padding: 0;
}
nav {
  list-style: none;
  height: 65px;
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  padding: 0px 10px;
  font-family: "Roboto", sans-serif;
}
nav ul {
  list-style-type: none;
}
.gameContainer {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.container {
  display: grid;
  grid-template-rows: repeat(3, 10vw);
  grid-template-columns: repeat(3, 10vw);
  font-family: "Roboto", sans-serif;
  position: relative;
}
.box {
  border: 1.5px solid black;
  font-size: 8vw;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box:hover {
  background-color: gainsboro;
}
.info {
  font-size: 22px;
}

.gameInfo {
  padding: 20px 34px;
  font-family: "Open Sans", sans-serif, cursive;
}
.gameInfo h1 {
  font-size: 2.5rem;
}

.imgBox img {
  width: 0;
  transition: width 1s ease-in-out;
}

.br-0 {
  border-right: 0;
}
.bl-0 {
  border-left: 0;
}
.bt-0 {
  border-top: 0;
}
.bb-0 {
  border-bottom: 0;
}
#reset {
  margin: 0 23px;
  padding: 6px 14px;
  background: #e5c7e5;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: bolder;
}

.line {
  width: 0;
  height: 5px;
  position: absolute;
  background-color: #911d91;
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 950px) {
  .gameContainer {
    flex-wrap: wrap;
  }
  .gameInfo {
    margin-top: 34px;
  }
  .gameInfo h1 {
    font-size: 1.5rem;
  }
  .container {
    display: grid;
    grid-template-rows: repeat(3, 20vw);
    grid-template-columns: repeat(3, 20vw);
  }
}
