/* style.css */

html, body {
  height: 100%;
  background-color: #399cd5;
  color: #FFF;
}

body {
  margin: 0;
  display: inline;

  /* This centers our sketch horizontally. */
  justify-content: center;

  /* This centers our sketch vertically. */
  align-items: center;

  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

a {
	color: #FFF;
	text-decoration: none;
}


@media screen and (min-width: 601px) {
  #info {
    font-size: 80px;
  }

  #link {
    font-size: 20px;
  }
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 600px) {
  #info {
    font-size: 50px;
  }
  #link {
    font-size: 20px;
  }
}