/**
 * @description Styles
 * @author      C. M. de Picciotto <d3p1@d3p1.dev> (https://d3p1.dev/)
 */
:root {
    --color-primary: hsl(0, 0%, 0%);
}

body {
    margin: 0;
    overflow: hidden;
    background-color: var(--color-primary);
}

img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}