body {
  background: linear-gradient(#000, #AA0), url(../HP_Background.png);
  background-size: auto, auto;
  background-blend-mode: color;
  background-size: 95% 100%;
}

.container {
  background: #5554;
  grid-template-rows: 15% auto 10%;
}

header {
  grid-area: header;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #000A;
  border-radius: 32% / 0 0 100% 100%;
  filter: drop-shadow(5px 5px 3px #FF0);
 margin-bottom: 5px;
}

header h2 {
  color: #FF0;
  text-shadow: 3px 3px 10px #FF0, 8px 0px 15px #FFF;
  letter-spacing: 40px;
}

header h1 {
  font-family: 'Sinister Plot', sans-serif;
}

#question {
  background: #3005;
}

.questionElement p {
  background: #66E;
  padding: 5px;
  margin: 3px;
}

.questionElement ol li {
  background: #9905;
}

.questionElement ol li:nth-child(2),
.questionElement ol li:nth-child(4) {
  background: #9909;
}

.questionElement ol li:hover {
  transform: scale(1.2);
}

#programation {
  box-shadow: 6px 3px 10px #FF03;
}