/*
Name: Kevin Chiu
Date: 04.05.18
Section: CSE 154 AH

This is the about.css page for the second creative project. This webpage introduces the user to the company's
origins and its one-and-only staff member.
*/

@import url('https://fonts.googleapis.com/css?family=Roboto');

body {
	font-family: "Roboto";
	background-color: #343D3A;
	color: #F1E7DE;
	padding-left: 2em;
	margin-bottom: 50px;
}

p {
	text-align: center;
}

section {
	display:flex;
	justify-content: space-between;	
}

#earth_pic {
	border-radius: 30px;
	height: 200px;
}


#self_pic {
	height: 200px;
	border-radius: 100%;
}

img:hover {
	opacity: 0.5;
}

#first {
	flex-basis: 50%
}

#second {
	flex-basis: 30%;
}

.line{
	border-left: 3px inset white;
	margin-left: 30px;
	padding: 40px 20px 0 20px;
	text-align: right;
}

h1 {
	text-align: center;
    text-shadow: 2px 2px 4px #000000;
}

hr {
	color: white;
	width: 80%;
}

#note {
	text-align: right;
	font-size: 0.75em;
}

body ul {
	list-style: none;
	line-height: 2em;
	text-align: center;
	padding-right: 30px;
}

a:link, a:visited {
    color: white;
    text-decoration: none;
}

a:hover {
	color: #5FD0D4;
}

.resized {
	height: 0.8em;
}