@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #68dfd9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    perspective: 1000px;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.card {
    height: 60vh;
    width: 50vh;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1), 0px 6px 6px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transition: transform 0.2s ease;
}

.user {
    height: 10vh;
    width: 10vh;
    background-color: #4fcfc9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 20px;
    transform: translateZ(50px);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.icons {
    display: flex;
    gap: 12px;
    transform: translateZ(30px);
    margin-top: 20px;
}

.icons i {
    background-color: #46dde2;
    height: 5vh;
    width: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.icons i:hover {
    transform: scale(1.2);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 5px;
    transform: translateZ(30px);
}

h2 {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 15px;
    transform: translateZ(30px);
}

a {
    all: unset;
}
