
:root {
    --cols:1;
    --maxw:75vw;
}

.container {
    width:auto;
}

@media screen and (max-device-width: 8cm)
{
    font-size: large;
   
}

@media screen and (min-width: 1000px) {
:root {
    --cols: 2; /* 2 */
    --maxw: 40vw; /* 2 */
  }
  img {
    max-width: 40vw;
  }
}

html {
  scroll-behavior: smooth;
}

body{
    column-count:var(--cols);
    height: 95vh;
}

img {
    vertical-align: middle;
    max-width:var(--maxw);
    max-height:75vh;
    width:auto;
    height:auto;
}