EARID

scrollbar issues on height 100vh or width 100vw

By default body and html are assigned to margin or padding to some pixels. Need to use default reset code.

body,html {
    margin: 0;
    padding: 0;
}
* {
    box-sizing: border-box;
}