/* CSS Document */

*{
	margin: 0;
	padding: 0;
}
body {
	background: #eee;
	color: #000;
	
}
::-moz-selection { /* Code for Firefox */
  color: #ff00f0;
  background: #efff00;
}
::selection {
  color: #ff00f0;
  background: #efff00;
}
.clear {
	clear: both;
}
.container-fluid {
	background: #eee;
}
h1 {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2em;
}
h2 {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.2em;
	margin-bottom: 20px;
}
.big-img img {
	width: 100%;
}
.cf-contact {
	position: relative;
	background: #eee;
}
div#cf-logo {
    margin-left: -65px;
    margin-bottom: 10px;
}

.cf-content {
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	padding-left: 50px;
}
@media only screen and (max-width: 768px) {
  .cf-content {
	position: inherit;
	top: 0;
	padding-left: 50px;
	-ms-transform: translateY(0);
	transform: translate(0);
  }
  .cf-contact {
    position: relative;
    background: #eee;
    padding: 60px 0;
    margin-top: -102px;
  }
  .big-img img {
    width: 100%;
    margin-top: -50px;
  }
}
#mail {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 18px;
	color:#000;
	text-decoration: none;
	letter-spacing: 3px;
	font-weight: 700;
	transition: all 500ms ease;
}
#mail:hover {
	color: #b900c8;
}