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