:root {
  --color_header: rgba(1, 170, 173, 0.8);
  --color_header_transparent: rgba(1, 170, 173, 0.3);
  --color_header_small: rgba(1, 170, 173, 0.8);
  --color_menue: white;
  --color_tooltip: white;
  --white_transparent: rgba(250, 250, 250, 0.6);
  --header_big: 8em;
  --header_neg: -8em;
  --header_small: 5em;
  --header_small_neg: -5em;
  --header_big_prtr: 13vh;
  --header_small_prtr: 8vh;
  --header_menu_prtr: 5vh;
  --header_bigger_prtr: 40vh;
}
* {
  box-sizing: border-box;
}

body {
  font-family: Montserrat;
  height: 100%;
}
.wrapper {
  position: fixed;
  background-color: white;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.flexRow {
  display: flex;
  flex-direction: row;
  align-items: left;
  justify-content: space-around;
  padding-left: 3%;
}

.flexColumn {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: space-around;
  width: 80%;
}

.rightPadding {
  padding-right: 10%;
}
.flowingText {
  line-height: 200%;
}
.CenteredContainer {
  padding: 2vh 8vw;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flexWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.flexedImages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.question {
  border-radius: 10px;
  background-color: rgba(200, 200, 200, 0.50);
  box-shadow: 0 1rem 1.25rem 0 rgba(130, 130, 130, 0.50),
              0 -0.25rem 1.5rem rgb(100, 100, 100) inset,
              0 0.75rem 0.5rem rgba(255, 255, 255, 0.4) inset,
              0 0.25rem 0.5rem 0 rgba(100, 100, 100, 1) inset;
  padding: 10px;
  padding-left: 20px;
  margin-top: 10px;
  width: 100%;
  cursor: pointer;
}

.answer {
  text-decoration: none;
  padding-left: 5%;
  padding-top: 1%;
  padding-right: 2%;
  padding-bottom: 1%;
  width: 70%;
}
.leftPadding {
  padding-top: 2%;
  padding-left: 5%;
}
.hide {
  display: none;
}

.txtcenter {
  display: flex;
  justify-content: center;
}
