@import url('https://fonts.googleapis.com/css2?family=Manrope&family=Playfair+Display&display=swap');
body, html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	font-size: 100%;
	font-family: 'Manrope', sans-serif;;
	font-weight: 400;
	background-color: #000;
    color: #767367;
}
.container {
	background-color: #000;
	color: #767367;
	width: 100%;
	height: 100%;
	text-align: center;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.logo {
    margin-bottom: 8%;
    width: 90%;
    max-width: 26rem;
}
.logo span {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
}
.logo img {
    width: 100%;
    height: 100%;
}
h4 {
	font-family: 'Playfair Display', serif;;
	font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.35em;
    letter-spacing: 3px;
    margin: 0 0 15% 0;
    padding: 0;
}

footer {
	font-size: 0.875rem;
	padding: 1rem;
}
footer a {
	font-weight: 900;
	text-decoration: none;
	color: #767367;
}
footer p {
    padding: 0;
    margin: 0;
    letter-spacing: 0.09375em;
}

@media screen and (max-height: 700px) {
  	.container {
	    -webkit-justify-content: unset;
	    -ms-flex-pack: unset;
	    justify-content: unset;
	}
}

@media screen and (min-width: 2800px) {
  	body, html {
		font-size: 200%;
	}
}