/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
  margin: 0;
  padding: 10px;
}

table {
	border: 0px solid #fff;
}

th{
	background-color: #ff0;
	padding: 7px;
}
td{
	padding: 7px;
	text-align: center;
	border: 0px solid #fff;
}

a:link {
  color: red;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: #000;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: hotpink;
  text-decoration: none;
}

/* selected link */
a:active {
  color: blue;
  text-decoration: none;
}

img {
	padding: 10px;
	width: 150px;
	opacity: 0.5;
	border-radius: 50%;
}



img:hover {
  transform: scale(1.3); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  opacity: 1;
}

