body {
	color: #19325a;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Helvetica', sans-serif;
    -webkit-font-smoothing: antialiased;
    margin: 0rem; /* 0/16 */
}
main {
	padding-right: 20vw;
}
body>header {
	text-align: center;
	background:  #19325a;
	color: #fff;
	padding: 4rem 0 2rem 0;
}
section>header {
	text-align: right;
    padding-right: 2rem;
    flex: 2;
}
.content {
	flex: 2;
}
h3 {
	margin: 1rem;
}
img {
    width: 15rem;
    border-radius: 50%;
}
svg {
	width:1.5rem;
	height:1.5rem;
	padding-right: 2rem;
	fill: #19325a;
}
a{
	color: #19325a;
	text-decoration: none;
}
a:hover {
	cursor:pointer;
}
section {
	display:flex;
	justify-content: center;
}
.basic_info {
	margin-top: 1rem;
}
.basic_info p{
	display: inline-block;
    line-height: 1.5rem;
}

@media screen and (max-width:700px) {
	*{
		text-align: center;
	}
	section {
		flex-direction: column;
	}
	.basic_info div {
		text-align: left;
	}
	section>header {
    padding: 0;
	}
	svg {
		padding-right: 1rem;
	}
	.content {
		width: 20rem;
		margin: 0 auto;
	}
	main {
		padding:0;
	}
}