/*----Body------------------------------------------------------ */
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  background-color: #F5F5F5;
}

@media only screen and (min-width: 768px) {
  body{
    padding-bottom: 25vh;
  }
}

/*----Typography------------------------------------------------ */

.answer {
	font-weight: bold;
	line-height: 1;
	text-shadow: 1px 1px 2px gray;
}

#answer,
#answer6 {
	font-size: 20vh;
}

#answer2 {
	font-size: 12vh;
}

#answer0,
#answer1,
#answer3,
#answer4,
#answer5 {
	font-size: 18vh;
}

@media only screen and (min-width: 640px) {
  #answer,
  #answer6 {
    font-size: 25vh;
  }

  #answer0,
  #answer1,
  #answer2,
  #answer3,
  #answer4,
  #answer5 {
    font-size: 18vh;
  }
}

@media only screen and (min-width: 768px) {
  #answer,
  #answer6 {
    font-size: 22vh;
  }

  #answer2 {
    font-size: 14vh;
  }

  #answer0,
  #answer1,
  #answer3,
  #answer4,
  #answer5 {
    font-size: 16vh;
  }
}

@media only screen and (min-width: 1024px) {
  #answer,
  #answer6 {
    font-size: 22rem;
  }

  #answer2 {
    font-size: 14rem;
  }

  #answer0,
  #answer1,
  #answer3,
  #answer4,
  #answer5 {
    font-size: 16rem;
  }
}

h2 {
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
  margin-top: 0;
}

/*----Links---------------------------------------------------- */

a,
a:visited {
    color: #000;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #275F9C;
}

/*----Primary-------------------------------------------------- */

#main {
  align-items: center;
  display: flex;
  height: 50vh;
  justify-content: center;
  margin: 0 auto;
  max-width: 860px;
  padding: 10px;
}

@media only screen and (min-width: 768px) {
  #main {
    height: 75vh;
  }
}

/*----Footer--------------------------------------------------- */

#footer {
  background: #E2E3DA;
  border-top: 1px solid #999;
  bottom: 0;
  height: 50vh;
  padding: 15px 25px;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  #footer {
    height: auto;
    max-height: 25vh;
    padding-left: 10px;
    padding-right: 10px;
    position: absolute;
  }
}

#footer .wrapper {
  margin: 0 auto;
  max-width: 860px;
}

#footer a,
#footer a:visited,
#footer a:hover,
#footer a:focus {
  color: #275F9C;
}

#footer a:hover,
#footer a:focus {
  text-decoration:underline;
}

#reading {
  font-size: 30px;
  line-height: 1;
  margin: 2rem 0;
  position: relative;
}

#reading .btn-more {
  background: transparent;
  border: none;
  color: #275f9c;
  cursor: pointer;
  font-size: 45px;
  line-height: 1;
  padding: 0;
  position: absolute;
  top: -0.25em;
}

#reading .btn-next {
  margin: 0 0 0 0.25em;
  right: -0.5em;
}

#reading .btn-prev {
  margin: 0 0.25em 0 0;
  left: -0.5em;
}

@media only screen and (min-width: 768px) {
  #reading .btn-prev {
    left: 0;
  }

  #reading .btn-next {
    right: 0;
  }
}