body {
  padding: 0px;
  margin: 0px;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: none;
}
@media (min-width: 901px) {
  body {
    flex-direction: row;
  }
}
@media (max-width: 900px) {
  body {
    flex-direction: row;
  }
}
#blockContainer {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: space-around;
  position: fixed;
}
@media (max-width: 900px) {
  #blockContainer {
    width: 100vw;
  }
}

#question-elements {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
#question {
  color: var(--color2);
  position: fixed;
}
#question-bg {
  position: fixed;
  width: 100vw;
  height: 3px;
  background-color: var(--bg2);
}

.info-container {
  margin: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

#button-container {
  display: none;
}
.button-container {
  height: 100vh;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: Arial, Helvetica, sans-serif;
}
/* fake button */
p {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0px;
  font-size: 1.5em;
}

/* variables couleurs */
:root {
  --bg1: rgb(49, 49, 49);
}
:root {
  --color1: rgb(255, 255, 255);
}
:root {
  --bg2: rgb(188, 188, 188);
}
:root {
  --color2: rgb(49, 49, 49);
}
#fake-button {
  background-color: var(--bg1);
  color: var(--color1);
  border: none;
  cursor: pointer;
}
#fake-button:hover {
  background-color: var(--bg2);
  color: var(--color2);
}
/* real button */
#imageInput {
  display: none;
}

#text-paragraph {
  width: 100vw;
  position: absolute;
  pointer-events: none;
  overflow-wrap: break-word;
  font-style: normal;
}
#text-paragraph i {
  font-style: normal;
}

#slider-font-size {
  width: 30vw;
  height: 5px;
  padding: 0;
  appearance: none;
  background: var(--bg1);
}
#slider-font-size:hover {
  background: var(--bg2);
}
#slider-font-size::-webkit-slider-thumb {
  appearance: none;
  width: 8px;
  height: 20px;
  background: var(--bg2);
}
#slider-font-size::-webkit-slider-thumb:hover {
  background: var(--color2);
}

#slider-img-size {
  width: 20vw;
  height: 10px;
  padding: 0;
  appearance: none;
  background: var(--bg1);
}
#slider-img-size:hover {
  background: var(--bg2);
}
#slider-img-size::-webkit-slider-thumb {
  appearance: none;
  width: 8px;
  height: 20px;
  background: var(--bg2);
}
#slider-img-size::-webkit-slider-thumb:hover {
  background: var(--color2);
}
