* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Josefin Slab', serif;
        font-family: 'Poppins', sans-serif;
    background-color: bisque;
}

.wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    perspective: 1000px;
}

.card {
    position: relative;
    width: 550px;
    height: 300px;
    background-color: rgb(255, 255, 255);
    border-radius: 15px;
    transform-style: preserve-3d;
    transition: transform 1s;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.3);
}

.wrapper:hover .card {
    transform: rotateY(180deg);
}

.front,
.back {
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: inherit;
}

.front {
    position: absolute;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: antiquewhite;

}
a{
    text-decoration: none;
    color: aliceblue;
}
.link:hover{
    color: bisque;
}

.left {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.left img {
    width: 80%;
}


.back {
        transform: rotateY(180deg);
           
  display: flex;
    background: linear-gradient(100deg, rgb(118, 109, 109) 40%, rgb(38, 38, 38) 0);
}

.big-circle {
    /* background-color: pink; */
    width: 250px;
    height: 250px;
    border: 2px solid rgb(54, 46, 46);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
    transform: rotate(180deg);
    border-bottom-color: rgb(227, 225, 213);
    animation: name infinite linear 2s both reverse;
}

.small-circle {
    width: 150px;
    align-items: center;
    height: 150px;
    border-radius: 50%;
    border: 2px solid white;
    border-style: solid;
    border-top-color: silver;
    animation: name infinite linear 2s both forwards;
    align-items: center;
    justify-content: center;
    display: flex;
}
@keyframes name {


    0% {
        transform: rotate(0deg);

    }

    100% {
        transform: rotate(360deg);
    }
}
.name{
    border: 2px solid hotpink;
    width: 50%;
    
    display: inline-block;
    

}
.right{

    width: 60%;
    color: white;
}

.contact{
    display: flex;
    text-align: center;
}
.right-content {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.person {
    background-color: bisque;
    border-bottom: solid  ;
    padding: 5px 0 5px 30px;
    margin: 30px 0;
    color:rgb(118, 109, 109) ;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.right-content ion-icon {
    width: 25px;
    height: 25px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(118, 109, 109);
    color: wheat;
    margin-right: 20px;
}
.person h4 {
    text-transform: uppercase;

}

.phone {
    padding-left: 30px;
}

.email {
    padding-left: 20px;
}
