#stickies{
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgAgMAAAAOFJJnAAAADFBMVEUAAAAAAAD/0gCRdwC+t42VAAAABHRSTlP/AP//07BylAAAAClJREFUeJxjYICAUAY4g2sVCCzAZDBgMD4MJQYUIDFC+f+DADKDAS08ANxzgt0+DbbSAAAAAElFTkSuQmCC");
    width: 25vh;
    height: 25vh;
    background-repeat: no-repeat;
    background-size: cover;
    image-rendering: pixelated;
    line-height: 25vh;
}

.container{
    width: 25vh;
    text-align: center;
    font-size: 2em;
    font-family: sans-serif;
    cursor: pointer;
    padding: 20px;
    border-radius: 5vh;
}

#nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    font-size: 2em;
    font-family: sans-serif;
    text-align: center;
    line-height: 10vh;
}

#footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 0.8em;
    font-family: sans-serif;
    text-align: left;
    padding-left: 10px;
    background-color: #8888;
}

#footer-left{
    font-size: 2em;
}

.svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.svg-container img {
    user-select: none;
    pointer-events: none;
    height: 100%;
    width: auto;
}


.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}


.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 17px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #444;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #444;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(13px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 17px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }