main
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.p_plan
{
    width: 60%;
    border: 2px solid lightblue;
    text-align: center;
    border-radius: 10px;
    margin: 20px 0;
}

h6
{
    margin-top: 20px;
    width: 80%;
}

.container_image
{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image
{
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    border: 2 solid lightgray;
    margin-top: 10px;
}

.image img
{
    object-fit: cover;
    width: 275px;
    height: 350px;
    margin-left: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
}

@media screen and (max-width: 450px) 
{
    p
    {
        width: 95%;
    }

    .container_image
    {
        width: 95%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .image
    {   
        width: 100%;
    }

    .image img
    {
        width: 98%;
        margin-left: 0;
        margin-bottom: 15px;
    }

    h6
    {
        width: 90%
    }
}