body{
  position: relative;
  height: calc(100vh - 16px);
  top: 0;
}

h1{
  text-align: center;
  margin-top: 0;
}

div#info{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 16px;
  word-break: keep-all;
  overflow-wrap: normal; 
}

.gameZone{
  position: relative;
  width: calc(100% - 2px);
  height: calc(97vh - 120px - 8px);
  border: 1px solid black;

  .brique{
    position: absolute;
    width: calc(5% - 1px);
    height: calc(2vh - 1px);
    border: 1px solid black;
  }

  .ball{
    background-color: lightblue;
    width: 1vw;
    height: 1vw;
    border-radius: 1vw;
    border: 1px solid black;
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%);
  }

  .barre{
    display: flex;
    background-color: green;
    width: 10%;
    height: 2vh;
    position: absolute;
    bottom: 5vh;
    left: 50%;
    transform: translate(-50%);
    cursor: pointer;

    .innerBarre{
      width: 3%;
      height: 100%;
    }
  }
}

footer{
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
}

@media (max-width: 768px ){
  body{
    height: calc(90vh - 16px);
  }
  .gameZone{
    height: calc(77vh - 120px - 8px);
    .ball{
      width: 2vw;
      height: 2vw;
      border-radius: 2vw;
    }
    .barre{
      width: 20%;
      bottom: 10vh;
    }
  }
}