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

}

    @keyframes rotate {
      from {
        transform: rotateY(0deg);
      }
      to {
        transform: rotateY(360deg);
      }
    }

    .container {
      animation: rotate 7s linear infinite;
    }
section{
min-height:100vh;
position:relative;
width:100vw;
background-color:skin;
display:flex;
align-items:center;
justify-content:center;
perspective:1000px;
}
section::before{
content:"";
position:absolute;
height:240px;
width:240px;
background:linear-gradient(90deg,pink,white);
transform:translate(-150px,-100px);
border-radius:50%;
}
section::after{
content:"";
position:absolute;
height:240px;
width:240px;
background:linear-gradient(90deg,pink,white);
transform:translate(150px,100px);
border-radius:50%;
}
.container{
position: absolute;
height:230px;
width:375px;
transform-style:preserve-3d;
z-index:1;

}
.card{
height:230px;
position: absolute;
width:375px;
border:4px solid #408cff;
background:rgba(0.2,0.2,0.2,0.1);
border-radius:15px;
backdrop-filter:blur(15px);
box-shadow:5px 5px 4px ;
backface-visibility:hidden;
}
.logo{
width:100%;
height:35px;
display:flex;

justify-content:flex-end;
}
.logo div{
margin-right:9px;
}
.logo img{
height:100%;
}
.content{
margin-top:30px;
display:flex;
justify-content:space-evenly;
align-items:center;
}
.pic img{
height:100px;
width:100px;
border:1px solid #408cff;

border-radius:50%;
}
.data h3{
margin-left:14px;
margin-bottom:10px;
word-spacing:15px;
}
.data h6{
word-spacing:5px;
}
.back{
background:rgba(0.2,0.2,0.2,0.1);
position:absolute;
transform:rotateY(180deg);
height:230px;
width:375px;
border:4px solid #408cff;
border-radius:15px;
backface-visibility: hidden;
backdrop-filter:blur(15px);
}
#p{

display:flex;
justify-content:space-evenly;
height:150px;
}
a{
margin-top:15px;
margin-right:10px;
}
a img{
width:130px;
border:1px solid #408cff;
}
h4{
width:60px;
margin-top:40px;
height:80px;
}
.back .logo{
width:100%;
height:35px;}
.back .logo img{
height:34px;
margin-right:2px;
border-radius:0 12px 0 0;
margin-top:1px;}
