body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Hides scrollbars */
    background-color: color(srgb 0.1224 0.1175 0.1854);
}

img {
    width: 100vw; /* 100% of the viewport width */
    height: 100vh; /* 100% of the viewport height */
    object-fit: contain; /* Covers the entire screen, cropping if needed */
}