/* 175 : 247 */
:root{
  --height: calc((calc(100vw - 1.75rem) * 247 ) / 175 );
}
@media (min-width: 576px){
  :root{
    --height: calc(100vh - 2rem);
  }
}

html,body{
  border: 0;
  margin: 0;
  padding: 0;
}
canvas{
  box-sizing: border-box;
  height: var(--height);
  width: calc((var(--height) * 175) / 247);
  margin: 0 auto;
  display: block;
}
.wrapper{
  position: relative;
  width: max-content;
  aspect-ratio: 175/247;
}
