*{
    margin: 1px;
    padding: 1px;
}

header{
	background-color: greenyellow;
	display: flex-start;
    align-items: center;
	width: 100%;
}

button.open{
	display: inline;
	font-size: 20px;
	color: white;
	position: relative;
	left: 300px;
	transform: translateY(-30px);
	background-color: red;
	border-radius: 50%;
	padding: 10px;
}

img.print{
	display: inline;
	position: relative;
	left: 900px;
	background-color: red;
	height: 70px;
	width: auto;
}

img.print:hover{
	background-color: green;
	box-shadow: 0 10px 15px 0 rgba(0,0,0,0.24), 0 15px 40px 0 rgba(0,0,0,0.19);
}

button:hover{
	background-color: yellow;
	color: black;
	box-shadow: 0 10px 15px 0 rgba(0,0,0,0.24), 0 15px 40px 0 rgba(0,0,0,0.19);
}

figure{
	position: relative;
	display: inline-block;
}

figure img{
	width: 1500px;
	height: 300px;
	padding: 0px;
	margin-bottom: 0px;
}
 
figcaption{
	position: absolute;
	color: white;
	background-color: rgba(0,0,0,0.5);
	transform: translate(30%, -350%);
	padding: 8px;
	font-family: Copperplate, Fantacy; 
	font-weight: bold; 
	font-size: 48px; 
	text-align: center;
	text-decoration: underline;
	text-decoration-color: red;
}

ol{
	list-style-type: decimal;
	list-style-position: inside;
	color: #9D3DC2;
}

ul{
	list-style-type: square;
	list-style-position: inside;
	color: #9D3DC2;
}

h1{
	position: absolute;
	color: white;
	background-color: rgba(0,0,0,0.5);
	transform: translate(95%, -415%);
	padding: 8px;
	font-family: Copperplate, Fantacy; 
	font-weight: bold; 
	font-size: 24px; 
	text-align: center;
	text-decoration: underline;
	text-decoration-color: red;
}

h2, h3.cont{
	color: #62C23D;
}

p.cont{
	color: #9D3DC2;
}

footer{
    background-color: brown;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    height: 60px;
}

nav{
    flex: 1;
    display: flex;
    justify-content: space-evenly;
    overflow: hidden;
    height: 25px;
}

nav a{
    text-decoration: none;
    color: tomato;
    text-shadow: 0px 25px 1px black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-transform: uppercase;
    transition: 0.5s;
    height: 50px;
}

nav a:hover{
    transform: translateY(-25px);
}