<!--

body {
    width: 800px; height: 90vh;
    margin:auto;
    background-image: url("assets/jedisith1.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    }

.banner {
    width: 800px;
    margin-left: auto; margin-right: auto;
    margin-top: 5px; margin-bottom: 10px;
    text-align: center;
        }

.container {
    width: 500px; height: 500px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #FFE81F;
    margin-left: auto; margin-right: auto;
    box-shadow: 0 0 10px #FFE81F, 0 0 30px #FFE81F, 0 0 50px #FFE81F;
    }

.container {
    display: grid;
    grid-template-columns: 62.5px 62.5px 62.5px 62.5px 62.5px 62.5px 62.5px 62.5px;
    grid-template-rows: 62.5px 62.5px 62.5px 62.5px 62.5px 62.5px 62.5px 62.5px;
    position: relative;
    top: 0; bottom: 0; left: 0; right: 0;
    }

.white {
    width: 62.5px; height: 62.5px;
    background-color: white;
    }

.black {
    width: 62.5px; height: 62.5px;
    background-color: #9f0613;
    }   
    
.black img {
    width: 62px; height: 62px;
    border-radius: 50%;
    }

.white img {
    width: 62px; height: 62px;
    border-radius: 50%;
    }


-->