* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    cursor: none;
    /*  background: url("http://api.thumbr.it/whitenoise-361x370.png?background=101010ff&noise=171717&density=90&opacity=40") fixed center;
*/
}

body {
    /*background: url("http://api.thumbr.it/whitenoise-361x370.png?background=101010ff&noise=171717&density=90&opacity=40") fixed center;
*/
}

.container {
    z-index: 2;

}

#square-holder {
    top: 0;
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#square {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 500px;
    border: solid 5px rgb(255, 255, 255);
    box-shadow: 0px 0px 0px rgb(250, 250, 2550);
    transition: .2s ease-in-out;
    -webkit-transition: .5s ease-in-out;
}
#square:hover {
    box-shadow: 0px 0px 20px rgb(250, 250, 2550);
}

h1 {
    font-family: 'Monoton', cursive;
    font-weight: lighter;
    font-size: 70pt;
    color: rgb(255, 255, 255);
    text-align: center;
}

h2 {
    /*font-family: 'Monoton', cursive;*/
    font-family: 'Playfair Display', serif;
    font-weight: lighter;
    font-size: 12pt;
    color: rgb(255, 255, 255);
    text-align: center;
}

#title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: lighter;
    top: 30px;
    left: 30px;
    font-size: 14pt;
    color: rgb(179, 179, 179);
    text-align: left;
    position: fixed;
}

img {
    width: 250px;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Chrome/Safari/Opera */
    -khtml-user-select: none;
    /* Konqueror */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
}

a:link,
a:visited {
    color: rgb(68, 87, 255);
    text-decoration: none;
    cursor: pointer;
}

a:link:active,
a:visited:active {
    color: (internal value);
}

#info {
    font-family: 'Roboto Mono', monospace;
    font-weight: lighter;
    bottom: 30px;
    right: 30px;
    font-size: 8pt;
    color: rgb(146, 146, 146);
    text-align: right;
    position: fixed;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.disable-select {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Chrome/Safari/Opera */
    -khtml-user-select: none;
    /* Konqueror */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by any browser but < IE9 */
}