<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*canvas {
    cursor: default;
    outline: none;
}

body {
    background-color: #222222;
}*/
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Ð£Ð±Ð¸Ñ€Ð°ÐµÐ¼ ÑÐºÑ€Ð¾Ð»Ð» */
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Ð&nbsp;Ð°ÑÑ‚ÑÐ³Ð¸Ð²Ð°ÐµÐ¼ canvas Ð½Ð° ÑˆÐ¸Ñ€Ð¸Ð½Ñƒ Ð¾ÐºÐ½Ð° */
    height: 100%; /* Ð&nbsp;Ð°ÑÑ‚ÑÐ³Ð¸Ð²Ð°ÐµÐ¼ canvas Ð½Ð° Ð²Ñ‹ÑÐ¾Ñ‚Ñƒ Ð¾ÐºÐ½Ð° */
    cursor: default;
    outline: none;
}

p {
    text-align: center;
    color: #eeeeee;
}

a {
    text-align: center;
    color: #bbbbff;
}

.superdev {
    color: rgb(37,37,37);
    text-shadow: 0px 1px 1px rgba(250,250,250,0.1);
    font-size: 50pt;
    display: block;
    position: relative;
    text-decoration: none;
    background-color: rgb(83,87,93);
    box-shadow: 0px 3px 0px 0px rgb(34,34,34),
                0px 7px 10px 0px rgb(17,17,17),
                inset 0px 1px 1px 0px rgba(250, 250, 250, .2),
                inset 0px -12px 35px 0px rgba(0, 0, 0, .5);
    width: 70px;
    height: 70px;
    border: 0;
    border-radius: 35px;
    text-align: center;
    line-height: 68px;
}

.superdev:active {
    box-shadow: 0px 0px 0px 0px rgb(34,34,34),
                0px 3px 7px 0px rgb(17,17,17),
                inset 0px 1px 1px 0px rgba(250, 250, 250, .2),
                inset 0px -10px 35px 5px rgba(0, 0, 0, .5);
    background-color: rgb(83,87,93);
    top: 3px;
    color: #fff;
    text-shadow: 0px 0px 3px rgb(250,250,250);
}

.superdev:hover {
    background-color: rgb(100,100,100);
}
</pre></body></html>