*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: hsl(217, 54%, 11%);
    font-family: "Outfit", sans-serif;
}

.card{
    max-width: 300px;
    background-color: hsl(216, 50%, 16%);
    padding: 20px;
    border-radius: 10px;
}

img{
    max-width: 100%;
}

.primary-image{
    border-radius: 10px;
}

h1{
    color: hsl(0, 0%, 100%);
    font-size: 18px;
    padding-block: 20px;
    font-weight: 700;
}

.primary-para{
    color: hsl(215, 21%, 68%);
    line-height: 1.5;
}

.flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-block: 20px;
}

.flex-item{
    display: flex;
    align-items: center;
    gap: 5px;
}

.cyan-para{
    color: hsl(178, 100%, 50%);
    font-weight: 700;
}

.divider{
    width: 100%;
    height: 1px;
    background-color:  hsl(215, 32%, 27%);
}

.profile{
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
}

.profile-image{
    max-width: 30px;
    border: 1px solid white;
    border-radius: 50%;
}

.profile span{
    color: hsl(0, 0%, 100%);
    font-size: 15px;
}

.small-para{
    font-size: 14px;
}