<link href="https://fonts.googleapis.com/css?family=VT323&display=swap" rel="stylesheet">

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  background-image: url('chapteronesurveyimage.png');
  background-repeat: repeat;
  background-position: center;
  background-size: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

.question {
    font-family: 'VT323', monospace;
    font-size: 20px;
    background-color: rgb(60, 123, 249);
    border: 5px double  silver;
    border-style: outset;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(107, 106, 106, 0.5);
    max-width: 250px;
    margin: 30px auto;
    text-align: center;
}

button {
    font-family: 'VT323', monospace;
    display: block;
    font-size: 20px;
    margin: 30px auto;
    text-align: center;
}

#milk
{
    width: 50px;
    height: auto;
}

#home
{
    position: absolute;
    top: 10px;
    left: 10px;
    width: 80px;
    height: auto;
}

/* mobile home */
@media screen and (max-width: 768px) {
  #home {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 50px;
    height: auto;
  }
}