@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    

    min-height: 100vh;

    background-color: hsl(217, 54%, 11%);

    font-family: "Outfit", sans-serif;
}
main{
        min-height: 18rem;
        padding: 1.5rem;
        
        width: 38vh;
        margin-bottom: 1rem;
        border-radius: 1rem;

        box-shadow: 0.5rem 0.5rem 0.4rem hsl(216, 50%, 16%);
        background-color: hsl(216, 50%, 16%);
}
img{
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
}
.box-text h3{
    color: hsl(0, 0%, 100%);
    font-weight:600 ;
}
.box-text p{
    font-size: 1rem;
    color: hsl(215, 51%, 70%);
}
.box-text h3,p{
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.box-row{
    display: flex;
    justify-content: space-between;
    margin: 0;
}
.box-left{
    display: flex;
    align-items: center;
        gap: 0.5rem;
}
.box-left img{
    margin: 0;
    width: 0.6rem;
    height: 1rem;
}
.box-left p{
    font-size: 1rem;
    color: hsl(178, 100%, 50%)
}
.box-right{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.box-right img{
    margin: 0;
    width: 1rem;
    height: 1rem;
}
.box-right p{
    font-size: 1rem;
    color:  hsl(215, 51%, 70%);
}
.bottom-row{
    margin-top: 0.5rem;
}
.avatars{
        display: flex;
    align-items: center;
        gap: 1rem;
}
.avatars img{
    margin: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid hsl(0, 0%, 100%);
}
.text {
  color: hsl(215, 51%, 70%); /* สีเทาอ่อน */
font-weight: 400;
margin: 0;
}

.text span {
  color: hsl(0, 0%, 100%); /* สีขาว */
font-weight: 400;
}
.my-hr{
height: 2px; /* ความหนาของเส้น */
background-color: hsl(215, 32%, 27%); /* สีฟ้า */
border: none; 
margin: 0;
}

