/* ===================== cards.css ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: transparent;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Inter, sans-serif;
}

.profile-card {
    width: 100%;
    height: 100%;
    background: #dcdcdc;
    border-radius: 22px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.image {
    height: 65%;
    background: linear-gradient(180deg, #2b2b2b, #111);
    border-radius: 18px;
}

.text h1 {
    font-size: 26px;
    font-weight: 800;
}

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

.socials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.socials div {
    background: black;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}
