.content {
/*Choose the smallest value between these two values at any time*/
width:min(500px,70%);
/*equivalent to */
width:70%;
max-width:500px;
}
.container { width: min(80ch, 100% - 2rem); margin-right: auto; margin-left: auto;}
max-width: min(600px, 100vw)