<style>
/*
Main
*/
html, body {
  margin: 0; 
  padding: 0; 
}
html {
background-color:#C6C6B2;
}
body{
	height: 100%;
}

* {
	box-sizing:border-box;
}

.heading{
	outline-style: double;
	margin: 0 5%;
}
.content-body{
	text-align: left;
	outline-style: double;
	margin: 0 5%;
	padding: 0% 1%;
}
.content-header{
	text-align: left;
	margin: 0 5%;
	padding: 0% 1%;
	font-size: 18pt;
}
.pagewrapper {
	width:100%;
	margin: 0% 0%;
	display:block;
	font-family: "Times New Roman";
	color: black;
	text-align: center;
}
/*
Resume Specific
*/
.resume-heading{
	font-size: 24pt;
	padding: 0 4%;
	text-align: left;
}
.resume-subheading{
	font-size: 20pt;
	padding: .5% 2%;
	text-align: left;
}
.resume-list{
	font-size: 14pt;
	padding: 0 2%;
	text-align: left;
	margin: 0 0;
}
.resume-row{
	padding: 1% 1%;
	display: flex;
}

.resume-column-left{
	padding: 0 1%;
	flex: 50%;
	text-align: left;
	font-size: 16pt;
}
.resume-column-right{
	padding: 0 1%;
	flex: 50%;
	text-align: right;
	font-size: 16pt;
}
.school-info{
	font-size: 14pt;
}

/*
Portfolio Specific
*/

.portfolio-header{
	text-align: left;
	font-size: 18pt;
	padding: 1% 5%;
}
.portfolio-subheader{
	text-align: left;
	font-size: 16pt;
	padding: 1% 5%;
}
.portfolio-body{
	text-align: left;
}
.portfolio-list{
	font-size: 14pt;
}

.portfolio-ordered-list{
	font-size: 12pt;
}

@media screen and (max-width: 600px) {
  .porfolio-header {
	font-size: 14pt;
  }
  .portfolio-list{
	font-size: 10pt;
}

.portfolio-ordered-list{
	font-size: 8pt;
}
}

.portfolio-figure{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
	padding: 10px 0;
}
.portfolio-caption{
	padding: 5px 0;
	text-align: center;
}

/*
Certs
*/
.cert-row{
	text-align: center;
	margin: 1% 5%;
}
.cert3 {
  float: left;
  padding: 5px 0;
  width: 33%;
}
.cert2 {
  float: left;
  padding: 5px 0;
  width: 50%;
}
.cert1 {
	float: center;
	padding: 5px 0;
}
/* Clear floats after the columns */
.cert1 .cert2 .cert3:after {
  content: "";
  display: table;
  clear: both;
}

.certs{
	outline-style: double;
}

/* Responsive layout - makes the four columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .cert1, .cert2, .cert3 {
	position: relative;
	left: 50%;
	transform: translate(-50%, 0%);
    width: 100%;
  }
}


/*
Accordions
*/
.accordion-wrapper {
	padding: 15px 0;
}

.accordion {
  background-color: #ccc;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #bebebe;
}

.accordion:after {
  content: '\002B';
  color: black;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: #eee;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  text-align: left;
}

/*Links*/
.links{
	text-align: center;
	margin: 1% 5%;
	background-color: gray;
	outline-style: double;
}
.link {
  float: left;
  padding: 5px 0;
  width: 20%;
}
.link a{
	color:white;
}
/* Clear floats after the columns */
.links:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the four columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .link {
	position: relative;
	left: 50%;
	transform: translate(-50%, 0%);
    width: 100%;
  }
}
</style>