css에서 body에 height: 100vh를 주게 되면 사파리에서 하단 여백이 생기게 된다.
그걸 방지하기 위한 코드
function setVH() {
let vh = window.innerHeight * 0.01;
document.documentElement.style.setProperty('--vh', `${vh}px`);
}
window.addEventListener('resize', setVH);
setVH();