body {
    margin: 0;
    overflow: hidden;
    background: rgb(255, 255, 255);
    height: calc(var(--vh, 1vh) * 100);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  justify-content: space-between;
  padding: 20px;
  box-sizing: border-box;
  position: fixed;
  font-family: 'Franklin Gothic', 'Arial Narrow', Arial, sans-serif;
  color: rgb(255, 255, 255);
}

.row {
  display: flex;
  justify-content: space-between;
  height: 100px;
}

.top-row {
  align-items: flex-start;
  padding: 10px 0;
}

.bottom-row {
  align-items: flex-end;
  padding: 10px 0;
}

.col {
  width: 48%;
  padding: 10px;
  box-sizing: border-box;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.middle {
  display: flex;
  justify-content: center;
  align-items: center;
}

#cercle {
  width: 40vw;
  max-width: 400px;
  height: auto;
}

