@import url('https://fonts.googleapis.com/css2?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');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: poppins;
}
body{
    background-color: hsl(218, 23%, 16%);  
}
.container{
    width: 30%;
    background-color: hsl(217, 19%, 24%);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin: 100px auto;
    position: relative;
}
#quoteid{
    color: hsl(150, 100%, 66%);
    text-transform: capitalize;
}
#quote{
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    margin-top: 10px;
}
#div{
    width: 100%;
    margin: 20px 0;

}
.image{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 43%;
    box-shadow: 1px 1px 10px  hsl(150, 100%, 66%);
    /* margin: 10px auto; */
    background-color: hsl(150, 100%, 66%);
}

@media screen and (max-width:500px) {
    .container{
        width: 80%;

    }
}