html {
    height: 100%;
    width: 100%;    
    background-color: black;
    overflow: hidden;
}

body {
    height: 100%;    
    width: 100%;
    overflow: hidden;
}


main {
    z-index: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0px;
    
    display: grid;
    place-items: center;
    grid-template-columns: 100%;
    grid-template-rows: 100%;
    
    padding: 0rem;
    margin: 0rem;
    overflow: hidden;
    background-color: black;
}

img {
    max-height: 100vh;
    object-fit: contain;
}