﻿/* CSS file for entrance image display */
 * 	{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

body {
    background-color: black; 
    display: flex;
    justify-content: center;  /* centre horizontally */
    align-items: center;      /* centre vertically */
    min-height: 100dvh;       /* full height, accounting for mobile browser bars */
    overflow: hidden;         /* hide scrollbars */
    }

.image-container {
    height: 90dvh;            /* per centage of the dynamic vertical viewport */
    width: 100%;              /* allow image to scale horizontally within bounds */
    display: flex;
    justify-content: center;
    }

img {
    height: 100%;             /* fill the vh container vertically */
    width: auto;              /* maintain the original aspect ratio */
    object-fit: contain;      /* ensure the whole image is visible without cropping */
    max-width: 100vw;         /* prevent ultra-wide images from clipping off-screen */
	border:1px white solid; 
	border-radius: 1.5rem;
  }
