/* In your style.css */
main {
    width: 100vw;
    height: 100vh; /* Takes up full viewport height */
    overflow: hidden; /* Prevents scrollbars if image is slightly off */
    display: flex;
    justify-content: center;
    align-items: center;
}

img{
    max-height: 100vh;
    max-width: 100vw;
}