I have used both flex-box and and media queries in my project but the test conditions of using both of them are not satisfied…
This is the media query
@media only screen and (max-width: 800px) {
#pricing{
flex-direction: column;
align-items: center;
}
}
This is the flexbox utilisation
#pricing{
display: flex;
justify-content: space-evenly;
border: 2px solid black;
width: 85vw;
margin: 0 auto;
padding: 20px;
}
.pricing-card{
display: flex;
flex-direction: column;
width: 300px;
justify-content: center;
align-content: center;
border: 1px solid black;
padding-bottom: 10px;
margin: 10px;
}