*{
    padding: 0px;
    margin: 0px;
}
body{
    background-color:  #fff0f5;
}
.tituloc{
    text-align: center;
    font-family: "Pinyon Script", cursive;
    font-weight: normal;
    font-size: 40px;
    margin: 15px;
}
.total{
    align-items: center;
    width: 230px;
    margin: 20px;
    background-color: #fff;
    height: 350px;
    text-align: center;
    border-radius: 10px;
    background-color: #fff;
}
.container{
    display: flex;
    align-items: center;
    justify-content: center;
}
.pedido{
    background-color:rgba(255, 222, 227, 0.925) ;
    border-radius:8px;
    border: none;
    width: 150px;
    height: 30px;
    cursor: pointer;
    margin-top: 40px;
    font-family: "Cormorant", serif;
    font-size: 20px;
    transition: transform 0.6s ease;
}
.total p{
    margin: 15px;
}
.pedido:hover{
    transform: scale(1.1);
}