* {
    box-sizing: border-box;
    margin: 0px;
}

body {
    height: 100%;
    overflow-y: hidden;
}

/* *********** Layout *********** */

header {
	background-color: rgb(183,173,173);
	background-image: url("img/Background2.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	padding: 5px;
	width: auto;
}

main {
    display: block;
    width: 100%;
    height: calc(100vh - 6.5rem);
    overflow-y: auto;
    padding-bottom: 1rem;
}

footer {
	background-color: rgb(183,173,173);
	background-image: url("img/Background2.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	position: fixed;
	bottom: 0;
	text-align: center;
    padding: 0.75em;
}

/* *********** Navigation *********** */

nav {
    display: block;
    display: flex;
    max-width: 500px;
    margin: auto;
}

.dropbtn {    
	color: rgba(0,0,0,1);
	background-color: rgba(255,255,255,.5);
	text-decoration: none;
	padding: 5px;
    height: calc(2rem + 10px);
    width: 100%;
    border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border: 1px solid black;
}
  
.dropdown {
    position: relative;
    display: inline-block;
    background: transparent;
    flex: 0.2;
    margin: 5px;
}
  
.dropdown-content {
    display: none;
    position: absolute;
    background: transparent;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
  
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-decoration: none;
	padding: 5px 5px 5px 5px;
	margin: 1% 0% 0% 1%;
    border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border: 1px solid black;
    background: white;
}
  
.dropdown-content a:hover {background-color: lightblue;}
  
.dropdown:hover .dropdown-content {display: block;}
  
.dropdown:hover .dropbtn {background-color: rgba(222,46,8,.1);}

/* *********** Pages *********** */

.a1 { /* link buttons */
	margin: 3% 0% 0% 20%;
	display: inline-block;
	color: rgba(0,0,0,1);
	background-color: rgba(255,255,255,.5);
	text-decoration: none;
	padding: 5px 5px 5px 5px;
    border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border: 1px solid black;
}

.a1:hover {
	background-color: rgba(150,150,150,.5);
	color:	rgb(255,255,255,1);
} 

section {
	display: block;
	width: 100%;    
    max-width: 1000px;
    margin: auto;
	background-color: rgba(255,255,255,1);
	padding: 2rem;
    padding-bottom: 0;
}

.left {
	float:left;
}

.right {
	float:right;
}

h1 {
	display: inline-block;
	text-align: left;
	color:	rgba(0,0,0,1);
	font-size: 250%;
    margin-left: 1rem;
}

section > h2 {
	display: block;
	color:	rgba(0,0,0,1);
	text-align: left;
    margin: 1rem;
	font-size: 150%;
}

section > h3 {
	display: inline-block;
	color:	rgba(0,0,0,1);
	text-align: left;
	margin: 2% 0% 2% 2%;
}

section img.i1 { /* index.html */
	width: 60%;
    max-width: 600px;
	float: right;
}

section img.i2 { /* portrait */
	width: 30%;
    max-width: 200px;
    margin: 1rem;
}

section img.i3 { /* landscape */
	width: 60%;
    max-width: 400px;
    margin: 1rem;
}

section > p {
	display: block;
	color:	rgba(0,0,0,1);
	text-align: left;
    margin: 1rem;
}

.centered {
    text-align: center;
}

p.indent {
    margin-left: 4rem;
}

ol {
    margin-left: 2rem;
}

ul {
	list-style: disc;
}

li {
    padding: 0.25rem;
}

/* ****** resume graphics ****** */

.resume {
    text-align: center;
}

img.doc {
    width: 30%;
    height: 100%;
}

img.arrowRight {
    width: 15%;
    margin-right: 1rem;
    transform: rotate(50deg);
    vertical-align: top;
    position: relative;
    top: 100px;
}

img.arrowLeft {
    width: 15%;
    margin-left: 1rem;
    transform: rotate(240deg);
    position: relative;
    vertical-align: top;
}

img.handLeft {
    width: 10%;
    margin-right: 2rem;
    transform: rotate(45deg);
    position: relative;
    vertical-align: top;
}

img.handRight {
    width: 18%;
    transform: rotate(-10deg);
    position: relative;
    vertical-align: top;
    top: 200px;
}