/*
 Theme Name:   Lucas Beemer
 Theme URI:    Lucasbeemer.com
 Description:  Personal website
 Author:       Lucas Beemer
 Author URI:   lucasbeemer.com
 Template:     blankslate
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  twenty-fifteen-child
*/


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.15;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Set every element's box-sizing to border-box */
* {
    box-sizing: border-box;
}

html, body {
    display: flex;
    justify-content: center;
    height: 100%;
    font-family: lato;
	line-height: 1.15;
}

h1, h2, h3, h4, h5 {
    font-family: 'Lustria';
    letter-spacing: 1px;
}

h1 {
  width: 100%;
  font-size: 22px;
  padding: 10px 0px;
}

/* #bc0f0f; */


#header {
	display: none;
}

#content {
	display: none;
}

.xoxo {
	display: none;
}

#footer {
	display: none;
}


/* MY CODE STARTS */

.container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.container .main-content {
    width: 97%;
    margin: 15px auto 0px auto;
}
.container .about {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .about .propic {
  opacity: .95;
  width: 15%;
  height: 15%;
  border-radius: 50%;
  margin: 0 5px;
}
.container .about .about-text {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.container .about .about-text .name {
	width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: center;
	font-size: 40px;
	padding-bottom: 5px;
}
.container .about .about-text .occupation {
	font-size: 20px;
	padding-bottom: 10px;
	display: flex;
	justify-content: center;
}

.container .about .about-text .description {
	font-size: 16px;
	display: flex;
	justify-content: center;
}

.container .resume {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  border-bottom: 2px solid #ebe9e7;
}

.container .resume .contact-info {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 2px solid #ebe9e7;
  margin-top: 12px;
}
.container .resume .contact-info .info {
  width: 100%;
}

.container .resume .contact-info .info p {
  margin-bottom: 4px;
}

.container .resume .contact-info .info p .linkedin {
  text-decoration: none;
  color: black;
  text-align: center;
}
.container .resume .contact-info .info p .linkedin:hover {
  text-decoration: underline;
}

.container .resume .portfolio {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 2px solid #ebe9e7;
  padding-bottom: 12px;
  margin-top: 12px;
}

.container .resume .portfolio p {
  width: 100%;
  margin-bottom: 4px;
}

a.portfolio-link {
  text-decoration: none;
  color: black;
}
a.portfolio-link:hover {
  text-decoration: underline;
}


.container footer {
  width: 100%;
  text-align: center;
  padding: 15px 0;
}




@media only screen and (max-width: 500px) {	
	
	.container {
		padding: 0;
		margin: 0;
		width: 100%;
	}
    .container .about {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		padding-bottom: 0px;
	}
	.container .about .propic {
		padding-bottom: 7px;
	}
    .container .about .about-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 120%;
    line-height: 1.3;
    text-align: center;
    justify-content: center;
    align-items: center;
	}
    .container .about .about-text .name {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
	font-size: 36px;
    margin-top: 0px;
	margin-bottom: 5px;
	}
     .container .about .about-text .occupation {
         font-size: 22px;
	}
	 .container .about .about-text .description {
  		 display: flex;
  		 justify-content: center;
		 text-align: center;
  		 font-size: 16px;
		 padding-bottom: 10px;
	}

	.container .about .propic {
		width: 55%;
	}
	h1 {
		line-height: .95;
	    text-align: center;
		padding: 10px 0;
	}
	h2 {
		text-align: center;
		line-height: 1.1;
	}
	.resume {
		display: flex;
		flex-wrap: wrap;
	}
	.container .resume .contact-info {
		width: 100%;
	}
    .container .resume .contact-info h1 {
        margin-top: 5px;
	}
	.container .resume .portfolio h1 {
		margin-top: 5px;
	}
}