
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: hsl(47, 88%, 63%);
    font-family: 'Figtree';
    font-size: 16px;
}

.main{
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.container{
    width: 290px;
    background-color: hsl(0, 0%, 100%);
    border-radius: 10px;
    border: 1px solid hsl(0, 0%, 7%);
    padding: 15px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.75);
}

.img img{
    width: 260px;
    border-radius: 10px;
}

button{
    padding: 7px;
    font-weight: 800;
    background-color: hsl(47, 88%, 63%);
    border: none;
    border-radius: 3px;
    margin-top: 10px;
    margin-bottom: 10px;
}


p{
    font-size: 16px;
    margin-bottom: 10px;
}

h1{
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 15px;
    cursor: pointer;
}

h1:hover{
    color:hsl(47, 88%, 63%) ;
}

#text{
    font-size: .8rem;
    color:hsl(0, 0%, 0%);
    font-weight: 500;
}

#gray{
    color:  hsl(0, 0%, 42%);
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.avatar{
    display: flex;
    
    align-items: center;
}

.avatar img{
    height: 40px;
    width: 40px;
}

.avatar p{
    padding-left: 10px;
    font-weight: 800;
    font-size: 16px;
    align-self: center;
}

@media (min-width: 1440px) {
.container{
    width: 320px;
    padding: 20px;

}

.img img{
    width: 280px;
   
}



}
