body{
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: rgb(245, 245, 245);
    height: 100dvh;
    display: flex;
    flex-direction: column;
}
button{
    cursor: pointer;
}
.main_wrapper{
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.inner_wrapper{
    background-color: white;
    border-radius: 13.5px;
    height: fit-content;
    width: fit-content;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    overflow: auto;
    margin: 0 16px;
}
h2{
    font-weight: 400;
    text-align: center;
    margin: 8px 0;
}
.plan_wrapper{
    display: flex;
    gap: 8px;   
    max-width: 100%;
    margin: 8px 0;
    width: 100%;
}
.plan{
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 12px;
    border-radius: 13.5px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    cursor: pointer;
    transition: transform 0.1s ease-in-out;
}
.plan:hover{
    transform: scale(1.05);
}
.plan:nth-child(2){
    border: 1px solid #55c951;
}
.plan *{
    margin: 8px 0;
}
.plan img{
    position: absolute;
    top: 0;
    right: 8px;
    margin: 0;
}
.price{
    font-weight: 500;
}
.most_popular{
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translate(50%, 60%);
    background-color: #55c951;
    color: white;
    border-radius: 13.5px;
    padding: 5px;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    display: block;
    margin: 0;
    width: max-content;
}
#logo{
    max-height: 50px;
}
.benefits{
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
    row-gap: 8px;
}
.benefit{
    display: flex;
    gap: 12px;
    align-items: center;
}
.benefit p{
    margin: 0;
}
.benefit img{
    box-shadow: rgba(40, 41, 41, 0.2) 0px 16px 32px;
    border-radius: 60px;
}
#submit_button{
    padding: 16px;
    background-color: #55c951;
    border-radius: 13.5px;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-top: 12px;
}
@media(min-height: 700px){
    .main_wrapper{
        margin-top: 0;
    }
}
@media(min-width: 500px){
    .plan_wrapper{
        gap: 16px;
    }
}
@media(min-width: 600px){
    .benefits{
        grid-template-columns: 1fr 1fr;
        column-gap: 12px;
    }
    #logo{
        max-height: 100px;
    }
    .benefit{
        max-width: 250px;
    }
    h2{
        margin: 24px 0;
    }
    .plan_wrapper{
        margin: 24px 0;
    }
    .benefit p{
        margin: 8px 0;
    }
    .most_popular{
        font-size: 14px;
    }
    #submit_button{
        margin-top: 24px;
    }
}
