:root {
    --color-bg: #222222;
    --color-primary: #ffff00;
    --wrapper-height: 87vh;
    --image-max-width: 300px;
    --image-margin: 3rem;
}
  
* {
	box-sizing: border-box;
}

[hidden] {
	display: none !important;
}
  
body {
	background-color: var(--color-bg);
}
  
.wrapper {
	min-height: var(--wrapper-height);
    display: grid;
    place-items: center;
    margin: 0 1rem;
}
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
  
.title {
    color: #f2f2f2;
    font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace;
    font-style: normal;
    font-size: 1em;
    margin: 0;
}  