@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

html {
  font-family: 'VT323', monospace;
  font-size: 200%;
}

p {
    margin-top: 5px;
    margin-bottom: 5px;
}

a {
        color: white;
}

body {
    font-family: 'VT323', monospace;
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start
/*   justify-content: center; /*
/*    height: 50vh; */
    margin: 0;
    padding: 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(16, 20px); /* 16 Columns */
    grid-gap: 0px; /* No gap between "pixels". */
    padding: 20px; /* Inner padding */
    margin: 20px 0; /* Margin from top and down */
    box-sizing: border-box;
    border: 2px solid #FFF; /* Outer border of each pic */
}

.grid-item {
    width: 20px;
    height: 20px;
    box-sizing: border-box;
	background-color: #FFFFFF; /* default: white */
}

.grid-item.black {
    background-color: #000000; /* black */
}

input, button {
    background-color: #000;
    border: 2px solid #fff;
    color: #fff;
    font-family: 'VT323', monospace;
	font-size: 80%;
    padding: 10px;
    cursor: pointer;
}

input[type="text"] {
	font-family: 'VT323', monospace;
	width: 10ch;
}

button:hover {
    background-color: #fff;
    color: #000;
}

button, label.btn {
    background-color: #000;
    border: 2px solid #fff;
    color: #fff;
    font-family: 'VT323', monospace;
    font-size: 80%;
    padding: 10px;
    cursor: pointer;
    display: inline-block; /* Ensure, that the label is treated as a button */
    margin: 5px;
}

button:hover, label.btn:hover {
    background-color: #fff;
    color: #000;
}

input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    background-color: #000;
    display: inline-block;
    cursor: pointer;
    position: relative;
}

input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background-color: #fff;
}