[CSS 3] min(), max()
.card {
width: min(700px, 90%, 70vw); // take the one currently is the min
height: max(300px, 90%, 40vh); // take the one currently is the max
font-size: min(max(16px, 3vh), 20px);
}
.card {
width: min(700px, 90%, 70vw); // take the one currently is the min
height: max(300px, 90%, 40vh); // take the one currently is the max
font-size: min(max(16px, 3vh), 20px);
}