body {
    margin: 0%;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
a{
    text-decoration: none;
}

.container {
    width: 100%;
    height: 100%;
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);    
    display: flex;
    align-items: center;
    justify-content: center;
}
.card {
    width: 300px;
    height: 450px;
    background-image: url(person-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}
.cardpop{
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateZ(20px);
    padding: 20px;
    text-align: center;
}
.icons{
    margin-top: 50px;
}
.icons a{
    margin:  10px;
    color: rgba(0,0,0,0.5);
    transition: color 0.3s ease-in-out;
}
.icons a:hover{
    color: #0093E9;

}
