.price-page {
    background: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main{
    flex-grow: 1;
}

.price {
    margin-top: 2rem;
    padding: 1rem 2rem;
    border: solid 3px #fbf1f6;
    border-radius: 15px;
    font-family: 'Roboto', sans-serif;
}

.price h1 {
    margin-top: 2rem;
    margin-bottom: 4rem;
    font-size: 2.2rem;
}

.price_widgets{
    display: flex;
    width: 100%;
    margin: 0 auto;
    gap: 1rem;
}

.widget{
    width: 100%;
    padding: 0rem 1rem;
    background: #fbf1f6;
    border: solid 2px #f5dfed;
    border-radius: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column; 
}

.widget__content {        
    flex: 1;
}

.widget_title{
    font-size: 1.5rem;
    color: black;
    font-weight: 700;
    margin-top: 1rem;
}
.widget_price{
    color:#f62c84;
    font-size: 1.45rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.widget_decoration{
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #6d7380;
    margin-top: auto;
}

.price .price_info{
    color:#b42368;
    font-size: 1rem;
    margin: 1rem 0rem;
    font-weight: 600;
}

.info{
    font-size: 1.4rem;
    color:black;
    margin-top: 2rem;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.info p{
    margin-bottom: 1rem;
}

footer{
    background: black;
  }