@charset "UTF-8";
html {
    height: auto;
	box-sizing: border-box;
	margin: auto;
}

/* Navigation */
header {
	margin: 10px;
    border-radius: 25px;
	padding: auto;
	width: 200px;
    height: auto;
	background-color: #f1f1f1;
	position: fixed;
	left: 0;
}
/* Sidebar links */
header a {
	margin-top: 5px;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	display: block;
	color: black;
	padding: 16px;
	text-decoration: none;
}
/* Active/current link */
header a.active {
	margin-top: 5px;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
    border-radius: 25px;
	background-color: #0080f5;
	color: white;
}
/* Links on mouse-over */
header a:hover:not(.active) {
    border-radius: 25px;
	background-color: #555;
	color: white;
}

/* Body */
body {
	font-family: sans-serif;
	background-color: #ffffff;
	margin-top: auto;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: 200px;
	font-style: normal;
	font-weight: 200;
	height: auto;
	min-height: auto;
    overflow: auto;
}

/* Container */
.container {
	width: auto;
	margin-top: auto;
	margin-bottom: auto;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	background-color: #ffffff;
}

/* About Section */
.text_column {
	text-align: justify;
	font-weight: lighter;
	line-height: 25px;
	float: left;
	padding-left: 20px;
	padding-right: 20px;
	color: #A3A3A3;
	height: auto;
}
.about {
	height: auto;
	width: 70%;
	border: solid 1.5em rgba(#000, .03);
    border-radius: 25px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
	padding: 50px;
	margin: auto;
	margin-top: 30px;
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
}
.about-basic {
	display: flex;
	align-items: center;
}
.personal-basic-info {
	text-align: center;
	flex-grow: 1;
}
.personal-image {
	height: auto;
	width: auto;
	max-width: 20%;
	max-height: 20%;
}
/* Social media icons */
.fa {
	padding: 15px;
	font-size: 25px;
	width: 25px;
	text-align: center;
	text-decoration: none;
	border-radius: 50%;
}
.fa:hover {
	opacity: 0.7;
}
.fa-github {
	background: #211F1F;
	color: white;
}
.fa-linkedin {
	background: #0e76a8;
	color: white;
}
.fa-twitter {
	background: #55ACEE;
	color: white;
}

footer {
	text-align: center;
	padding: 1rem;
    /* border-radius: 25px; */
	/* background-color: #efefef; */
	font-weight: lighter;
	letter-spacing: 2px;
	border-top-width: 2px;
	width: calc(100% - 200px);
	bottom: 0;
    margin-left: 0px;
    margin-top: 30px;
    /* position: fixed; */
}

@media (pointer:coarse) {
    /* custom css for "touch targets" */
	footer {
		position:relative;
		width: calc(100% - 32px);
	}
}

/* On screens that are less than 700px wide, make the sidebar into a topbar */
@media screen and (max-width: 700px) {
	header {
	  width: 100%;
	  height: auto;
	  position: relative;
	}
	header a {float: left;}
	body {margin-left: 0;}
	.about {margin-top: 100px;}
  }
  
/* On screens that are less than 400px, display the bar vertically, instead of horizontally */
@media screen and (max-width: 400px) {
	header a {
		text-align: center;
		float: none;
	}
	header a {float: left;}
	body {margin-left: 0;}
	.about {margin-top: 100px;}
}
