body{
    min-height: 100vh;
	width: 100%;
	background-image: linear-gradient(rgba(246, 246, 246, 0.7),rgba(246, 246, 246, 0.7)), url(https://lh4.googleusercontent.com/68NSB_iqMcvo6owP46eROxZALhbVXaaX-WcVrTLGvJjzH5TALeM81BxqerfPsg2YeEA=w2400);
	background-repeat: no-repeat;
	background-size: cover;
	margin: 0;
	padding-bottom: 25px;
}
nav{
	display: flex;
	padding: 2% 6%;
	justify-content: space-between;
	align-items: center;
}
nav img{
	width: 200px;
}
.nav-links{
	flex: 1;
	text-align: right;
}
.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}
.nav-links ul li a{
	color: #000000;
	text-decoration: none;
	font-size: 25px;
    font-style: Georgia;
}
.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #000000;
	display: block;
	margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.image{
position: relative;
width: 800px;
margin-left: auto;
margin-right: auto;
animation: transitionIn 0.75s;
	align-items: flex-start;
}
.image_img{
    display: block;
    width: 100%;
    border-radius: 10px;

}
.image_overlay{
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-style: Georgia;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}
.image_overlay_blur {
    backdrop-filter: blur(5px);
}
.image_overlay:hover{
    opacity: 1;
}
.image_overlay > * {
    transform: translateY(20px);
    transition: transform 0.25s;
}
.image_overlay:hover > * {
    transform: translateY(0px);
}
.image_title{
    font-size: 2em;
    font-weight: bold;
}
.image_description{
    font-size: 1.25em;
    margin-top: 0.25em;
    text-align: center;
}
h1{
    font-size: 2.5em;
    text-align: center;
    font-style: 'Georgia';
    animation: transitionIn 0.75s;
	align-items: flex-start;
}
@keyframes transitionIn {
	from {
		opacity: 0;
	}

	to{
		opacity: 1;
	}
}
