/*.chrome img{
  image-rendering: -webkit-optimize-contrast;
  @include mobile{
    image-rendering: auto;
  }
}*/
html, body {
	background: #EBB6B7;
	color: #5F5F5F;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html.noscroll, body.noscroll {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
	touch-action: manipulation;
}

.wrapper {
	position: relative;
	height: 100vh;
	width: 100%;
}

.card {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: (translate(-50%, -50%),);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	max-width: 430px;
	width: 90%;
	box-sizing: border-box;
	padding: 75px 60px;
	text-align: center;
	box-shadow: 0px 10px 15px rgba(95, 95, 95, 0.5);
	border-radius: 10px;
	background: #DDDAD8;
}

@media only screen and (max-width: 500px) {
	.card {
		padding: 60px 30px;
	}
}

.card #logo {
	max-width: 250px;
	margin: 0 auto 40px;
	width: 100%;
	box-sizing: border-box;
	padding: 0 30px;
}

@media only screen and (max-width: 500px) {
	.card #logo {
		max-width: 200px;
		margin-bottom: 30px;
	}
}

.card h1 {
	font-family: 'Work Sans', sans-serif;
	font-display: swap;
	text-transform: uppercase;
	line-height: 1;
	color: #242424;
	font-size: 18px;
	letter-spacing: 0.5px;
	margin-bottom: 25px;
}

@media only screen and (max-width: 500px) {
	.card h1 {
		font-size: 16px;
		margin-bottom: 20px;
	}
}

.card p {
	font-family: 'Times New Roman', Times, serif;
	font-size: 16px;
	line-height: 22px;
}

@media only screen and (max-width: 500px) {
	.card p {
		font-size: 14px;
		line-height: 20px;
	}
}

.card p.middle {
	margin-bottom: 25px;
}

.card p a.button {
	border: 1px solid #242424;
	background: #242424;
	color: #ffffff;
	border-radius: 15px;
	font-family: 'Work Sans', sans-serif;
	font-display: swap;
	text-transform: uppercase;
	line-height: 1;
	font-size: 14px;
	letter-spacing: 0.5px;
	display: inline-block;
	vertical-align: middle;
	padding: 8px 25px;
	margin-right: 5px;
	-webkit-transition: background 0.3s ease, color 0.3s ease;
	-moz-transition: background 0.3s ease, color 0.3s ease;
	-ms-transition: background 0.3s ease, color 0.3s ease;
	-o-transition: background 0.3s ease, color 0.3s ease;
	transition: background 0.3s ease, color 0.3s ease;
}

@media only screen and (max-width: 500px) {
	.card p a.button {
		letter-spacing: 0.3px;
		font-size: 13px;
	}
}

.card p a.button:hover {
	background: none;
	color: #242424;
}
