html,body{
    height: 100%
}

#holder{
    min-height: 100%;
    position:relative;
}

#body{
    padding-bottom: 60px;    /* height of footer */
}

.header{
    height: 50px;
    position: relative;
    font-weight: bold;
    font-size: xx-large;
    color: #dfdfdf;
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

body {
  background-color: black;
  color: #ffffff;
  font-size: large;
}

a:link {
  color: green;
}

/* visited link */
a:visited {
  color: #00af00;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: blue;
}

select {
    font-family: inherit;
    font-size: 100%;
    box-sizing: border-box;
}

label {
    display: block;
    font-family: inherit;
    font-size: 100%;
    margin: 0;
    box-sizing: border-box;
    padding: 5px;
}

.ttable    { display: table; font-family: verdana, arial, helvetica, sans-serif; line-height: 24px}
.trow      { display: table-row; padding: 3px }
.tcell     { display: table-cell; padding: 3px; font-weight: bold}

.header {
font-weight: bold;
  font-size: xx-large;
  color: #dfdfdf;
}


@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spinSlow{
    animation-name: spin;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

.spinMedium{
    animation-name: spin;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.spinFast{
    animation-name: spin;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

/*CTA Button explodes when pushed, sh0uld probably be called @$$ПL0Д*/
#ctabtn {
     background: #255ff4;
     border-radius: 0.2em;
     color: #fff;
     cursor: pointer;
     margin: auto;
     padding: 0.5em 1em;
     transition: background .15s linear, color .15s linear;
     font: 1em/1.5 "Hind", sans-serif;
     font-size: calc(16px + (48 - 16)*(100vw - 320px)/(2560 - 320));
 }
#ctabtn:focus, #ctabtn:hover {
    background: #0b46da;
}
#ctabtn:focus {
    outline: transparent;
}
#ctabtn::-moz-focus-inner {
    border: 0;
}
#ctabtn:active {
    transform: translateY(0.1em);
}

#ctabtn:disabled {
    background-color: #444444;
    color: grey;
    font-weight: normal;
}
.exploding, .exploding:focus, .exploding:hover {
    background: transparent;
    color: transparent;
}
.exploding {
    pointer-events: none;
    position: relative;
    will-change: transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.particle {
    position: absolute;
    top: 0;
    left: 0;
}
.particle--debris {
    background: #255ff4;
}
.particle--fire {
    border-radius: 50%;
}

input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 62px !important;
    height: 32px;
    display: inline-block;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    outline: none;
    border: none;
    cursor: pointer;
    background-color: orange;
    transition: background-color ease 0.3s;
}

input[type=checkbox]:before {
    content: "yes no";
    display: block;
    position: absolute;
    z-index: 2;
    width: 28px;
    height: 28px;
    background: #fff;
    left: 2px;
    top: 2px;
    border-radius: 50%;
    font: 10px/28px Helvetica;
    text-transform: uppercase;
    font-weight: bold;
    text-indent: -22px;
    word-spacing: 37px;
    color: #fff;
    text-shadow: -1px -1px rgba(0,0,0,0.15);
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    transition: all cubic-bezier(0.3, 1.5, 0.7, 1) 0.3s;
}

input[type=checkbox]:checked {
    background-color: #4CD964;
}

input[type=checkbox]:checked:before {
    left: 32px;
}

@media (prefers-color-scheme: dark) {
    body {
        background: black;
    }
}
