body,html {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
body {
  background: #1C1C1C;
  color: #fff;
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px; 
  line-height: 1.8em;
}

a {
  color: #00AAEE;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  position: relative;
  text-decoration: none;	
  transition: color .3s;
}

a:before {
    background: #00AAEE;
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    height: 2px;
    width: 0px;
    transition: all .3s;
}

a:hover {
	color: #fff;
}

a:hover:before {
	width: 100%;
}

strong {
	font-weight: 700;
}

.logo strong {
	color: #00AAEE;
}

.info strong {
	color: #aaa;
	display: inline-block;
	width: 100px;
}

.container {
  box-sizing: border-box;
	padding: 20px;
	margin: 0 auto;
	max-width: 1200px;
	width: 100%;
}

@media (max-width: 600px) {
	.info strong {
		display: block;
		padding-top: 10px;
		width: auto;
	}
}
