body {
	font-family: "georgia";
	background: #ffffff;
    font-size:16px;
}

.content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
    text-align:center;
}
a {
	color:black;
	text-decoration: none;
}

span {
	font-size:20px;
}

@media screen and (min-width: 601px) {
  img {
	  width:150px;
  }
  span {
    font-size: 36px;
  }
  body {
    font-size: 30px;
  }

}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 600px) {
  span {
    font-size: 24px;
  }
  body {
    font-size: 20px;
  }
  img {
	  width:125px;
}