@font-face {
    font-family:'barlow';
    src: url('fonts/Barlow300.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body {
	background-color: #d9cfc3;
	max-height: 100vh;
	font-family: "barlow";
}

ul, figure, body, div, li {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: #dacec3;
}

a:hover {
	text-decoration: underline;
}

.wrapper {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}

.wrapper > div {
	padding: 20px;
}

.menu-container {
	position: fixed;
    right: 0;
    top: 0;
}

.main-container { 
	
}

.image-container {
	
}

.image-container figure {
	padding-top: 25vh;
	text-align: center;
}

.image-container figure img {
	max-width: 100%;
}

.content-container p {
	text-align: center;
	color: #786e65;
	font-size: 30pt;
	padding-top: 75px;
}



.menu-container .image {
	text-align: right;
}

.menu-open-container {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 100%;
	background-color: #6d645c;
	text-align: right;
	opacity: 0;
	transition: 1s left ease-in-out, 0.4s opacity ease-in-out;
	overflow-y: scroll;
}

.menu-open-container:target {
	left: 77vw;
	opacity: 1;
	transition: 0.4s left ease-in-out, 1.2s opacity ease-in-out;
	
}

.menu-open-container img {
	padding-bottom: 2.5vh;
}

.text-menu-open {
	text-align: right;
	font-size: 20px;
	color: #dacec3;
	line-height: 31px;
}

.text-menu-open li {
	list-style-type: none;
	letter-spacing: 1px;
}

@media screen and (max-width: 1450px){
	.menu-open-container:target {
		left: 70vw;
	}
}

@media screen and (max-width: 1024px){
	.menu-open-container:target {
		left: 50vw;
	}
	.text-menu-open {
		font-size: 18px;
		color: #dacec3;
		line-height: 28px;
	}
}

@media screen and (max-width: 600px) {
	.content-container p {
		font-size: 32px;
	}
	.menu-open-container:target {
		left: 25vw;
	}
}

@media screen and (max-width: 900px) {
	.image-container figure {
		padding-left: 25px;
		padding-right: 25px;
	}
}

@media screen and (max-width: 550px) {
	.image-container figure {
		padding-top: 11vh;
	}
}

@media screen and (max-width: 550px) {
	.content-container {
		margin-top: -4vh;
	}
}

@media screen and (max-width: 550px) {
	.content-container p {
		font-size: 25px;
	}
}

@media screen and (max-width: 400px) {
	.content-container p {
		font-size: 2vh;
	}
}

.privacy {
	font-size: 80%;
	color: #dacec3;
	margin-top: auto;
}

.menu-open-container {
	display: flex;
	flex-direction: column;
}



