body{
	display: flex;
	align-items: center;
	justify-content:center;
	height: 100vh;
	background-color: lavenderblush;
}
.Invite_card{
	position: relative;
	width: 350px;
	height: 350px;
	cursor: pointer;
	transform-style: preserve-3d;
	transform: perspective(2500px);
	transition: 1s;
}
.Invite_card:hover{
	transform: perspective(2500px) rotate(5deg);
	box-shadow: inset 100px 20px 100px 
	rgba(0, 0, 0, 0.2), 0 10px 100px 
	rgba(0, 0, 0, 0.4);
}
.Invite_card:hover .cardfront {
	transform: rotateY(-160deg);
}
.Invite_card:hover .fw {
	visibility: hidden;
}
.cardfront{
	position: relative;
	background-color: #fff;
    width: 350px;
    height:450px;
    overflow: hidden;
    transform-origin: left;
    box-shadow: inset 100px 20px 100px rgba(0,0,0,0.2), 30px 0 50px 
    rgba(0,0,0,0.4);
    transition: 0.6s;
}
.fw{
	font-family: Tahoma, sans-serif;
    text-align: center;
    margin:30px; 
    background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
    transition: 0.1s;
}
.ballons{
	position: absolute;
}
.b1, .b2, .b3, .b4 {
	position: absolute;
    width: 120px;
    height:140px;
    border-radius:50%;
}
.b1{
	background-color: rgb(239, 71, 111, 0.7);
	left: -10px;
	top: 50px;
}
.b2{
  background-color: rgb(6, 214, 160, 0.7);
  left:80px;
  top:20px;
}
.b3{
  background-color: rgb(255, 209, 102, 0.7);
  left:160px;
  top:50px;
}
.b4{
  background-color: rgb(17, 138, 178, 0.7);
  left:240px;
  top:20px;	
}
.b1:before, .b2:before, .b3:before, .b4:before{
	content:"";
	position: absolute;
	width: 2px;
	height: 180px;
	background-color: #ffd166;
	top: 135px;
	left: 60px;
}
.b1:after, .b2:after, .b3:after, .b4:after{
	content:"";
    position: absolute;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    top:135px;
    left:54px;
}
.b1:after{
	border-bottom: 10px solid #ef476f;
}
.b2:after{
	border-bottom: 10px solid #06d6a0;
}
.b3:after{
	border-bottom: 10px solid #ffd166;
}
.b4:after{
	border-bottom: 10px solid #118ab2;
}
.cardin{
	position: absolute;
    background-color: #fff;
    top: 0;
    left: 0;
    width: 350px;
    height:450px;
    box-shadow: inset 100px 20px 100px rgba(0,0,0,0.2);
    z-index: -1;
}
p{
	font-family: 'Brush Script MT',cursive;
	margin: 40px;
	color: #333;
}
.name{
	position: absolute;
	left: 150px;
	top: 300px;
	color: #333;
}
.back{
	font-family: Tahoma, sans-serif;
	color: #333;
	text-align: center;
	margin: 30px;
	outline-color: #333;
	outline-style: dotted;
}
.head{
	box-shadow: rgb(2, 1, 2);
	height: 100px;
	width: 100px;
	text-align: inherit;
	top: 200px;
	bottom: 500px;

}
#myVideo{
	position: fixed;
	right: 0;
	bottom: 0;
	min-height: 100%;
	min-width: 100%;
}
