* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800");
html,
body {
	position: relative;
	height: 100vh;
	width: 100vw;
	align-items: center;
	background: #642b73;
	background: linear-gradient(to bottom, #c6426e, #642b73);
	display: flex;
	font-family: "Open Sans", sans;
	justify-content: center;
	overflow: hidden;
	perspective: 1800px;
	text-align: center;
	margin: 0 20px;
}

h1 {
	color: #3e3e42;
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -1px;
	margin-bottom: 30px;
	transform: translateZ(35px);
}

h3 {
	color: #eb285d;
	font-size: 16px;
	margin-bottom: 6px;
	transform: translateZ(25px);
}
.header {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-around;
	height: 50px;
	width: 100%;
	padding: 10px 20px;
	margin: 10px;
	border: none;
	border: transparent;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.logo {
	text-decoration: none;
	color: #fff;
	transition: color 0.4s;
}
.navigation a {
	text-decoration: none;
	margin: 30px;
	color: #fff;
	transition: color 0.4s;
}
.logo:hover,
.navigation a:hover {
	color: #00aced;
}
.cards {
	background: #fff;
	border-radius: 15px;
	box-shadow: 0px 10px 20px 20px rgba(0, 0, 0, 0.17);
	display: inline-block;
	padding: 30px 35px;
	perspective: 1800px;
	text-align: left;
	transform-origin: 50% 50%;
	transform-style: preserve-3d;
	transform: rotateX(11deg) rotateY(16.5deg);
	min-width: 595px;
}

.card {
	border-radius: 15px;
	box-shadow: 5px 5px 20px -5px rgba(0, 0, 0, 0.6);
	cursor: pointer;
	display: inline-block;
	height: 250px;
	overflow: hidden;
	perspective: 1200px;
	position: relative;
	transform-style: preserve-3d;
	transform: translatez(35px);
	transition: transform 200ms ease-out;
	width: 175px;
	text-align: center;

	/* &:hover {
	   box-shadow: 5px 5px 20px -7px rgba(0,0,0,0.5);
	   transform: translatez(60px);
	 } */

	&:not(:last-child) {
		margin-right: 30px;
	}
}

.card__img {
	position: relative;
	height: 100%;
}

.card__bg {
	bottom: -50px;
	left: -50px;
	position: absolute;
	right: -50px;
	top: -50px;
	transform-origin: 50% 50%;
	transform: translateZ(-50px);
	z-index: 0;
}

.card__one {
	.card__img {
		top: 14px;
		right: -10px;
		height: 110%;
	}
	.card__bg {
		background: url("./img/astronaut-1784245_1920.jpg");
		background-size: cover;
	}
	/* .card__text {
		background-color: #254b60;
	} */
}

.card__two {
	.card__img {
		top: 25px;
	}
	.card__bg {
		background: url("./img/moon-5190738_640.jpg");
		background-size: cover;
	}
	/* .card__text {
		background-color: #274a2e;
	} */
}

.card__three {
	.card__img {
		top: 5px;
		left: -4px;
		height: 110%;
	}
	.card__bg {
		background: url("./img/boat-166738_640.jpg");
		background-size: cover;
	}
	/* .card__text {
		background-color: #3e2222;
	} */
}

.card__text {
	align-items: center;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.55) 100%
	);
	bottom: 0;
	display: flex;
	flex-direction: column;
	height: 70px;
	justify-content: center;
	position: absolute;
	width: 100%;
	z-index: 2;
}

.card__title {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	padding: 0 10px;
	margin-bottom: 3px;
}

.notice {
	background: gold;
	border-top-left-radius: 6px;
	bottom: 0;
	font-family: monospace;
	font-size: 14px;
	padding: 8px 10px;
	position: absolute;
	right: -20px;
}





