*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {background-color: black;}

.centerWrapper {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.center {
    align-self: center;
    justify-self: center;
}