@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@300;400;600&family=Source+Code+Pro&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--white: #e5eaf5;
	--azul: #0cb3ddb6; 
	--purple: #770fdacc;
	--amarillo: #ffba49;
}

.container {
	font-family: 'Mukta', sans-serif;
	height: 100vh;
	width: 100vw;
	background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(images/1.jpg) no-repeat center ;
}

.card-wrapper {
	height: 600px;
	width: 350px;
	border: 1px solid var(--white);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(images/1.jpg) no-repeat center;
	border-radius: 5px;
	transition: box-shadow 1s;
	overflow: hidden;
	color: var(--white);
}

.card-wrapper:hover {
	box-shadow: 0 0 30px var(--amarillo);
}

.card {
	position: absolute;
	top: -100%;
	height: 100%;
	width: 100%;
	background: linear-gradient(200deg, var(--azul) 40%, var(--purple) );
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	transition: top .3s 1.2s;
}

.card-wrapper:hover .card {
	top: 0;
}

.card-img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	margin-top: 15px;
	border: 2px solid var(--white);
	padding: 8px;
	box-shadow: 0px 0px 50px rgba(0, 0, 0, .5)
}

.card-heading {
	font-family: 'Sourse Code Pro', monospace;
	text-align: center;
	font-size: 25px;
	/* font-weight: 300; */
	text-transform: uppercase;
	letter-spacing: 2px;
	background: linear-gradient(var(--azul), #076780b6);
	width: 70%;
	padding: 5px 0;
	transform:perspective(1000px) skewX(-10deg) rotateY(40deg);
}

.card-paragraph {
	font-size: 18px;
	width: 85%;
	text-align: justify;
	position: relative;
}

.card-paragraph i {
	font-size: 25px;
	font-style: italic;
	position: absolute;
}

.card-paragraph i:first-child {
	top: -10%;
}

.card-paragraph i:last-child {
	button: -10%;
	margin-left: 10px;
}

.card-icons {
	list-style: none;
	display: flex;
	width: 70%;
	justify-content: space-around;
	background: var(--azul);	
	border-radius: 5px;
}

.card-icons i:hover {
	transform: scale(1.5);
	color: red;
}

.card-icon-link {
	text-decoration: none;
	width: 35px;
	height: 35px;
	border: 1px solid var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	margin: 5px;
	transition: border 3s;
}

.card-icon {
	font-size: 20px;
	color: var(--white);
	transition: color .3s;
}

.card-btn {
	outline: none;
	display: inline-block;
	cursor: pointer;
	font-weight: 500;
	border-radius: 5px;
	padding: 5px 15px;
	margin-bottom: 9px;
	border: 0;
	color: var(--white);
	text-transform: uppercase;
	background: rgba(255, 0, 0, 0.7);
	line-height: 1.15;
	font-size: 12px;
	box-shadow: 8px 10px 20px rgba(0, 0, 0, .5);
}



.card-btn:hover {
    transition: all .1s ease;
    box-shadow: 0 0 0 0 #fff, 0 0 0 3px var(--azul);
    background: rgba(0, 0, 0, .6);
}
