* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(47, 88%, 63%);
    height: 100vh;
    width: 100vw;
}

.container {
    border: 1px solid black;
    width: 400px;
    background-color: hsl(0, 0%, 100%);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 10px 10px 0px black;

}

.img>img {

    width: 100%;
    border-radius: 10px;
    object-fit: cover;

}

#learn {
    background-color: hsl(47, 88%, 63%);
    color: black;
    padding: 7px 10px;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

#para1 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: hsl(0, 0%, 7%);
    font-size: 14.5px; 
}
#para2 {
    font-family: "Poppins", sans-serif;
    font-weight: 800 ;
    font-size: 25px;
   color: black;

   &:hover{
    color: hsl(47, 88%, 63%);
   }
}

#para3 {
    font-family: "Poppins", sans-serif;
    font-weight: 400 ;
    color: hsl(0, 0%, 42%);

}

#image-avatar {
    width: 30px !important;
    height: 30px !important;
}

#para4 {
    position: relative;
    left: 7px;
    bottom: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}