body{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: "Inter", sans-serif;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.priceTagContainer{
    display: flex;
    gap: 2rem;
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.priceTagContainer > div{
        border: solid 1px #F97316;
        border-radius: 12px;
        padding: 32px 31px;
        width: 90%;
        max-width: 350px;
        font-family: "Inter", sans-serif;
        box-sizing: border-box;
    }
 .innerdiv{
 display: flex;
 flex-direction: column;
 gap: 1rem;
 margin-bottom: 52px;
 }

 .innerdiv p{
     font-weight: 400;
     line-height: 23.4px;
     font-size: 13px;
 }

 ul{
     padding-left: 34px;
     display: flex;
     flex-direction: column;
     gap: 1.25rem;
     margin-bottom: 51px;
     list-style: none;
   }

   li{
       position: relative;
   }

   li::before{
       content: url(icon.png);
       position: absolute;
       left: -2rem;
   }

 button{
     width: 100%;
     height: 40px;
     font-size: 14px;
     font-weight: 500;
     line-height: 24px;
     background-color: #F97316;
     border: none;
     color: #FAFAFA;
     border-radius: 6px;
     cursor: pointer;
 }

 .smalltext{
     font-size: 20px;
     line-height: 24px;
     font-weight: 400;
 }