html,
body {
  margin: 0;
  padding: 0;
  font-family: monospace;
  /*font-family: 'Roboto Mono', monospace;*/
}

.grid-container {
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  height: 100vh;

  display: grid;

  grid-template-rows: 100px 20fr 80fr;
  grid-template-columns: 35fr 65fr;

  column-gap: 40px;
  row-gap: 20px;

  /*justify-items: center;*/
  /*align-items: center;*/

  /*justify-content: center;*/
  /*align-content: center;*/
}

.box-header {
  /*grid-column: 1 / -1;*/

  /*row / column*/
  grid-area: 1 / 1 / 2 / 3;
}

.box-canvas {
  grid-area: 2 / 2 / -1 / -1;
  width: 90%;
}

.box-sidebar {
  grid-area: 2 / 1 / 3 / 2;
}

.box-videos {
  grid-area: 3 / 1 / 4 / 2;
}

#game-message {
  margin: 0;
  width: 100%;
}

#button-invite-link {
  width: 100%;
}

video {
  border-radius: 10px;
  width: 100%;
  height: 50fr;
  object-fit: cover;
}

.flex-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.logo {
  width: 60px;
}