body {
	background-color: #171a1e;
	font-family: 'Ubuntu';
}

#container {

}

footer {
	text-align: center;
}

footer a {
    font-size: 20px;
    /* color: #F72525; */
    /* color: #824646; */
    color: inherit;
}

footer a:last-of-type {
    border: none;
    padding: 0;
}

footer a:hover {
	color: #171a1e;
    background-color: #8d8d8d;
}

footer ul li {
	display: inline;
}

h1, h2, h3, h5, h6 {
	text-align: center;
	/*font-family: 'Iceland';*/
}

p, a {
	/*font-family: 'Ubuntu';*/
	/*font-family: 'Julius Sans One'*/
}

a#linkedIn {

}

a#github {

}

.logo{
    position: fixed;
    top: 50%;
    left: 50%;
    width: 360px;
    height: 120px;
    margin-top: -60px;
    margin-left: -150px;
    color: #8d8d8d;
    font-size: 1.5em;
} 

.logo p {
	text-align: center;
	margin: 10px 0 10px 0;
}
	

h1 {
	font-size: 42px;
	text-align: center;
	top: 50%;
	bottom: 50%;
}

/* body and .text are NOT required for the blinking cursor. */

#container p::after {
    content: "";
    position: absolute;
    /* top: 0; */
    right: 54px;
    display: inline-block;
    background-color: #8d8d8d;
    /* opacity: 0.5; */
    vertical-align: top;
    width: 10px;
    height: 25px;
	/* 
	  Animation paramaters:
	  blink = animation-name, 
	  1s = animation-duration, 
	  step-end = animation-timing-function,
	  infinite = animation-iteration-count
	  */
    -webkit-animation: blink 1s step-end infinite;
    animation: blink 1s step-end infinite;
}

@-webkit-keyframes blink {
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@keyframes blink {
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}


/* ############################## MEDIA QUERIES ############################## */

@media only screen and (max-width: 750px){

	.logo {
	    width: 200px;
	    height: 86px;
	    margin-top: -43px;
	    margin-left: -100px;
	    font-size: 1em;
	}

	#container p::after {
	    content: "";
	    position: absolute;
	    /* top: 0; */
	    right: 17px;
	    display: inline-block;
	    background-color: #8d8d8d;
	    vertical-align: top;
	    width: 7px;
	    height: 18px;
	    -webkit-animation: blink 1s step-end infinite;
	    animation: blink 1s step-end infinite;
	}

	h1 {
		font-size: 30px;
	}

	footer a {
		font-size: 13px;
		/*padding: 0 5px 0 0px;*/
	}

}

/*
@media only screen and (max-height: 700px){

	.portfolio{
		width: 320px;
		height: 350px;
		margin-top: -175px;
		margin-left: -160px;
	}
}*/