<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&amp;display=swap');

body{
    padding: 0;
    margin: 0;
    font-family: "Figtree", sans-serif;
    background-color: hsl(47, 88%, 63%);
    display: flex;
    align-items: center;
    height: 100vh;

}

.container{
    width: 375px;
    max-width: 90%;
    margin: 0 auto;
}

.card{
    background-color: hsl(0, 0%, 100%);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #333;
    font-size: 15px;
    filter: drop-shadow(7px 7px hsl(0, 0%, 7%));

}

.card img{
    border-radius: 18px;
}

p:first-child{
    max-width: 60px;
    background-color: hsl(47, 88%, 63%);
    padding: 4px 12px;
    font-weight: 800;
    border-radius: 5px;
}

p:nth-child(2){
    font-weight: 500;
}

h2{
    font-weight: 800;
}

p:last-child{
    color: hsl(0, 0%, 42%);
    font-weight: 500;
    line-height: 1.5;
}

.profile-card{
    display: flex;
    align-items: center;
}

.profile-card img{
    width: 30px;
}

.profile-card span{
    margin-left: 10px;
    font-weight: 800;
}</pre></body></html>