The problem of overall scaling of the website

now the requirement is that the display effect of the project website needs to be scaled to 80%. How to quickly implement it from css?

May.22,2021

body{
    zoom:0.8;
}

or

body{
    transform: scale(0.8);
}
Menu