*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

body{
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: #045de9;
    background: linear-gradient(to top, #1ba1ad, #1aacb7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.topBackground{
    background-image: url("../images/bg-pattern-top.svg");
    background-repeat: no-repeat;
    background-size: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -5%;
    left: -20%;
    transform: rotate(40deg);
}

.container{
    width: 380px;
    height: 400px;
    background-color: #ffffff;
    background-image: linear-gradient(to top, #ffffff30, #d7e1ec);
    border: none;
    border-radius: 20px;
    position: relative;
    perspective: 1000px;
    transition: 1s ease-out;
    overflow: hidden;
    
}

.header{
    width: 100%;
    height: 35%;
    background-image: url("../images/bg-pattern-card.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    border-radius: 20px 20px 0 0;
}


.avatar{
    width: 120px;
    height: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    background-image: url("../images/10475596_635294216565697_8440949389190392356_n.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    border: 5px solid white;
}



.text{
    padding-top: 70px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.text h3{
    font-size: 25px;
}

.text .profession{
    font-size: 18px;
    font-weight: lighter;
    padding: 5px 0px;
    background: -webkit-linear-gradient(#1ba1ad, #1aacb7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text p{
    font-size: 18px;
}

.footer{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 35px 30px 0px 30px;
    position: relative
}

.footer::before{
    content: "";
    width: 380px;
    height: 1px;
    background-color: #1ba1ad30;
    position: absolute;
    top: 15px;
    right: 0;
}

.engagement{
    text-align: center;
}

.engagement .figure{
    font-size: 20px;
    font-weight: bolder;
}

.engagementText{
    font-size: 12px;
    padding: 5px 0px;
    font-weight: lighter;
}

.bottomBackground{
    background-image: url("../images/bg-pattern-bottom.svg");
    width: 100%;
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 50%;
    bottom: -25%;
    right: -70%;
    transform: rotate(-10deg);
}

.container:hover{
    cursor: pointer;
    transform: rotateY(30deg);
    transition: 1s ease-out;
}

.container:hover::before{
    content: "";
    width: 550px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(315deg, #ffffff 0%, #d7e1ec 74%);
    transform: rotate(330deg);
    filter: blur(30px);
    -webkit-filter: blur(30px);
    animation-name: blurEffect;
    animation-duration: .5s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-play-state: running;


}

@keyframes blurEffect{
    0% {left: -200px; top: -200px;}
    100% {left: 30px; top: 500px; }
}