body {
	box-sizing: border-box;
	margin-top: 1.75em;
	height: 2600px;
	position: relative;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
		"Helvetica Neue", Arial, sans-serif;
}

/* ? main */
#main {
	background-color: #eee;
	height: auto;
	max-width: 100%;
    min-width: 80%;
	position: absolute;
    padding-bottom: 1em;
}

/* !header */
header {
	text-align: center;
}

header #title {
	color: #333;
	font-size: 3em;
	font-weight: 700;
	display: inline;
}

header span {
	font-size: 1.2em;
	color: rgb(95, 95, 95);
}

/* !image */
figure {
	background-color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	height: auto;
	width: 98%;
	margin-right: 20%;
	margin-left: 1%;
}

figure #image {
	min-width: 78%;
	max-width: 97.5%;
}

figure figcaption {
	font-size: 17.5px;	
	padding-bottom: 1.2em;
}

figcaption, ul, #quotation {
    color: rgb(73, 70, 70);
}
/* !tribute info */
#tribute-info h2 {
	text-align: center;
}

ul {
	width: 45%;
	margin: auto;
	font-size: 1.2em;
}

ul li {
	margin-bottom: 1em;
}

ul b,
ul li::marker,
#tribute-info h2 {
	color: #383838;
}

#quotation {
	font-style: italic;
	margin: auto;
	width: 45%;
	margin-top: 72px;
	font-size: 1.2em;
}

#quotation span {
	float: left;
}

/* !footer */
footer {
	text-align: center;
}

footer h2 {
    color: #383838;
    font-size: 1.5em;
}

footer a {
    color: #74638F;
}

footer a:hover {
    text-decoration: none;
    color: #624491;
}

/* ?Media queries */
@media screen and (min-width: 500px) and (max-width: 658px) {
    ul, #quotation {
        width: 85%;
        margin: unset;
        margin-left: 20px;
    }

    #quotation {
        margin-top: 70px;
    }

    footer {
        width: 99%;
    }
}