/*
styling
*/
.bottom {
    display: flex;
}
.left{
flex:1;
padding:20px;
background-color: teal;
}
.right{
flex:1;
padding:20px;
background-color: lightseagreen;
}
.top{
padding:20px;
background-color:rgb(150, 127, 135) ;
}
body{
    display: flex;
    background-color:pink;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin:0px;
}

.container{
    width: 500px;
    border-radius: 15px;
    box-shadow:0px 10px 20px 0px rgba(0,0,0,0.5);
    overflow: hidden;
}

/*typography*/
.top h2{
    font-size: 35px;
    color: rgb(196, 14, 196);
}
.top h4{
    font-size: 20px;
    color: rgb(183, 47, 183);
}
.top p{
    color:rgb(42, 22, 22);
    line-height: 1.5;
}
.price span:first-child{
    font-weight: bold;
    font-size: 30px;
}
.price span:last-child{
    font-size: 15px;
    opacity:0.8;
}

button {
    border-radius: 10px;
    padding: 10px;
    width: 100px;
    background-color: greenyellow;
    border: none;
}

button:hover {
    background-color: lightgreen;
}
.right ul{
    list-style:none;
    padding:0px;
}