@font-face {
  src: url(../images/ROCKYAOE.ttf);
  font-family: rocky;
  font-weight: bold;
}

html {
  height: 100%;
  font-size: 16px;
  font-family: arial;
}

body {
  height: 100%;
  margin: 0;
}

#interface {
  min-height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr auto;
      grid-template-rows: auto 1fr auto;
}

#interface > header, #interface > footer {
  padding: .5em 1em;
  background-color: #000;
  color: #e51d25;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: rocky;
}

#interface > header {
  -webkit-box-ordinal-group: -999;
      -ms-flex-order: -1000;
          order: -1000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#interface > header h1 {
  margin: 0;
  font-size: 6em;
  text-align: center;
  line-height: 1em;
}

#interface > footer {
  -webkit-box-ordinal-group: 1001;
      -ms-flex-order: 1000;
          order: 1000;
  font-size: smaller;
}

#app {
  padding: 1em;
  background-image: url(../images/fond.png);
  color: white;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}

#app > * {
  border: 5px solid white;
  border-radius: .5em;
}

@media screen and (min-aspect-ratio: 1 / 1) {
  #app {
    grid-auto-flow: column;
  }
}

#parties {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1em;
  font-size: 22px;
  display: -ms-grid;
  display: grid;
  gap: 1em;
}

#parties label[for] {
  font-weight: bold;
}

@media screen and (max-aspect-ratio: 1 / 1) {
  #parties {
    -ms-grid-column-align: center;
        justify-self: center;
    gap: 0;
  }
}

#apercu {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto;
      grid-template-columns: auto;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  background-color: rgba(255, 255, 255, 0.5);
}

#apercu img {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
}
/*# sourceMappingURL=style.css.map */