body {
    margin: 0;
}

#wintertime {
    background:linear-gradient(#00345f, #279efa);
    position: fixed;
    top: 0;
    z-index: -1;
}

section {
    display: flex;
    justify-content: space-evenly;
}

div.blocks {
    display: flex;
    flex-wrap: wrap;
}

form {
    display: flex;
    width: 100%;
    background-color: rgba(255,255,255,0.5);
    font-size: 3em;
    justify-content: space-between;
    margin: 1vw auto;
    width: 98vw;
    border-radius: 1px;
}

button, input[type="text"] {
    border:0;
    padding: 0;
    background: none;
    font-size: inherit;
    padding: 1rem;
}
button:hover {
    filter: brightness(1.3);
}
button:active {
    filter: brightness(0.8);
    transform-origin: center;
    transform: scale(0.9);
}

div.blocks {
    margin: 0.25em auto;
    width: 98%;
}

div.blocks div {
	width:100px;
	height:100px;
	background:#000;
	margin: 0 10px 10px 0;
	text-align:center;
	line-height:100px;
    color: #FFF;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 2rem;
    position: relative;
}
div.blocks div::before,
blockquote::before,
blockquote::after {
    content: attr(data-hue);
    position: absolute;
    font-size: 0.5rem;
    left: 0.1rem;
    top: 0.1rem;
    line-height: 1;
    opacity: 0.5;
}


#lightmap, #message {
    text-align: center;
}
#lightmap div {
    width: 36px;
    height: 36px;
    margin: 2px;
    background-color: #FFFFFF;
    display: inline-block;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px currentColor) brightness(1.1);
    /* opacity: 0.8; */
    position: relative;
    transition: 1s color ease-in;
    will-change: filter, color;
}
#lightmap div::after {
    content: "";
    color: white;
    filter: blur(5px);
    background:rgba(255,255,255,0.5);
    position: absolute;
    width: 4px;
    height: 4px;
    top: 50%;
    transform: translate(-2px, -2px);
}

#message {
    background: whitesmoke;
    font-family: cursive;
    padding: 0.2em 1em;
    width: max-content;
    margin: 0 auto 1em;
    display: none;
}

blockquote {
    margin: 0 0 1em 0;
    padding: 1rem;
    background: lightgray;
    border-radius: 3px;
    position: relative;
    text-align: center;
    background: linear-gradient(white, white), repeating-linear-gradient( 45deg, #21734F, #21734F 10px, white 10px, white 20px, #519B7B 20px, #519B7B 30px, white 30px, white 40px);
    background-origin: padding-box, padding-box;
    background-clip: border-box, border-box;
    background-clip: padding-box, border-box;
    padding: 1em;
    border: 5px solid transparent;
    background-origin: border-box;
}
blockquote::before {
    content: attr(data-ip);
}
blockquote::after {
    content: attr(data-time);
    left: auto;
    right: 0.1rem;
    top: auto;
    bottom: 0.1rem;
}
#log {
    display: flex;
    flex-direction: column-reverse;
}