@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-family: 'Outfit', sans-serif;
    color: white;
}
.panel{
    background-color: hsl(217, 54%, 11%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main_image{
    height: 40vh;
    width: 100%;
    border-radius: 5px;
}
.main_panel{
    background-color: hsl(216, 50%, 16%);
    padding: 20px;
    border-radius: 10px;
    width: 20%;
    
}
h2{
    margin: 15px 0px;
}
.content_p{
    margin: 15px 0px;
    color: hsl(215, 51%, 70%);
    line-height: 150%;
    font-size: 17px;
}
.price_span{
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}
.price_span p{
    display: flex;
    align-items: center;
}
.price_span p img{
    padding-right: 10px;
}
.footer{
    border-top: 1px solid hsl(215, 32%, 27%);
    padding: 15px 0px;
    display: flex;
    align-items: center;
    
}
.footer img{
    border: 1px solid white;
    border-radius: 50%;
}
.footer_span{
    margin-left: 20px;
}
span span{
    color: hsl(215, 51%, 70%);

}
.avatar{
    height: 3vh;
}

@media(max-width:730px){
    .main_panel{
        min-width: 80%;
        margin: 0px 20px;
    }
}