*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main{
    width: 100%;
    height: 900px;
    display: flex;
    background-color: black;
    
}
.elemento{
    width: 400px;
    margin: auto;
    height: 800px;
    border: 2px solid black;
    display: flex;
    flex-direction: column;
}
.a{
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding-left: 30px;
    flex: 1;
    border-radius: 20px 20px 0 0;
}
.a > h3{
    font-size: 25px;
}
.a >p{
    font-size: 20px;
}
.b{
    flex: 2;
    /* background-color: green; */
    display: flex;
    flex-direction: column;
    color: white;
}
.b1{
    background-color: green;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 20px;    
}
.b1>h2{
    font-weight: 200;
}
.precio-cont >h3{
    font-size: 15px;
    font-weight: 100;
}
.precio-cont > h2{
    font-size: 40px;
}
.full-access{
    font-weight: 100;
}

.precio-cont{
    display: flex;
    align-items: center;
    gap: 30px;
}
button{
    width: 200px;
    padding: 13px 30px;
    border-radius: 15px;
    background-color:#BFDF32 ;
    color: white;
    align-self: center;
}

.b2{
    background-color: #4ABEBD ;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding-left: 20px;
    padding-bottom: 20px;
    border-radius: 0 0 15px 15px;
}
.b2 >h1{
    font-weight: 200;
}
.b2 > p{
    font-weight: 100;
}



@media (min-width:900px) {
    .elemento{
        min-width: 900px;
    }
    .a{
        flex: 1;
    }
    .a>h3{
        font-size: 45px;
    }
    .a>h2{
        font-size: 36px;
    }
    .b{
        flex: 1.3;
        flex-direction: row;
        height: 300px;
    }
    .b1{
        
    }
    .b2{

    }
}