*, *:before, *:after {
    box-sizing: border-box;
}

html, body {
    background-color: #000000;
    font-family: apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    line-height: 1.25rem;
    font-size: 1rem;
    color: #ffffff;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    /* -webkit-backface-visibility: hidden; 
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden; */

    /* -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden; */
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

a {
    color: #cccccc;
    text-decoration: none;    
    font-weight: 500;
    outline: none;
    transition: color 0.3s;
}

a:not([disabled]):hover,
a:not([disabled]):active,
a:not([disabled]):focus:not(:hover):not(:active) {
    color: #ddffff;
}

a:not([disabled]),
a:not([disabled]) * {
    cursor: pointer;
}

a[disabled],
a[disabled] * {
    cursor: default;
}

p {
    margin: 0;
    padding: 0;
}

.flex {
	display: flex;	
}

.inline-flex {
	display: inline-flex;
}

.row {
    display: flex;
    flex-direction: row;
}

.inline-row {
    display: inline-flex;
    flex-direction: row;
}

.col {
	display: flex;
	flex-direction: column;	
}

.flex-1 {
	flex: 1;
}

.flex-2 {
	flex: 2;
}

.grow {
	flex-grow: 1;
}

.nogrow {
	flex-grow: 0;
}

.shrink {
	flex-shrink: 1;
}

.noshrink {
	flex-shrink: 0;
}

.items-start {
	align-items: flex-start;
}

.items-center {
	align-items: center;
}

.items-end {
	align-items: flex-end;
}

.items-baseline {
	align-items: baseline;
}

.items-stretch {
	align-items: stretch;
}

.justify-start {
	justify-content: flex-start;
}

.justify-center {
	justify-content: center;
}

.justify-end {
	justify-content: flex-end;
}

.justify-space-between {
	justify-content: space-between;
}

.justify-space-around {
	justify-content: space-around;
}

.justify-space-evenly {
	justify-content: space-evenly;
}

.self-start {
	align-self: flex-start;
}

.self-center {
	align-self: center;
}

.self-end {
	align-self: flex-end;	
}

.self-baseline {
	align-self: baseline;
}

.self-stretch {
	align-self: stretch;
}

.content-start {
	align-content: flex-start;
}

.content-center {
	align-content: center;
}

.content-end {
	align-content: flex-end;
}

.content-space-between {
	align-content: space-between;
}

.content-space-around {
	align-content: space-around;
}

.content-space-evenly {
	align-content: space-evently;
}

.content-stretch {
	align-content: stretch;
}

.text-head {
	font-size: 1.5rem;
}

.text-code {
    font-family: Courier;
}

.text-normal {
	font-style: normal;
}

.text-bold {
	font-weight: bold;
}

.text-italic {
	font-style: italic;
}

.text-underlined {
	text-decoration: underline;
}

.text-overlined {
	text-decoration: overline;
}

.text-strikethrough {
	text-decoration: line-through;
}

.text-wrap {
	white-space: unset !important;
	word-break: break-word !important;
}

.text-nowrap {
	white-space: nowrap !important;
}

.text-highlighted {
	color: var(--highlighted-text-color);
}

.text-select-noselect {
	-webkit-touch-callout: none !important;
      -webkit-user-select: none !important;
       -khtml-user-select: none !important;
         -moz-user-select: none !important;
          -ms-user-select: none !important;
              user-select: none !important;	
}

.text-select-all {
	-webkit-touch-callout: all !important;
      -webkit-user-select: all !important;
       -khtml-user-select: all !important;
         -moz-user-select: all !important;
          -ms-user-select: all !important;
              user-select: all !important;	
}

.text-select-auto {
	-webkit-touch-callout: auto !important;
      -webkit-user-select: auto !important;
       -khtml-user-select: auto !important;
         -moz-user-select: auto !important;
          -ms-user-select: auto !important;
              user-select: auto !important;	
}

.text-lowercase {
	text-transform: lowercase;
}

.text-uppercase {
	text-transform: uppercase;
}

.text-capitalize::first-letter {
	text-transform: capitalize;
}

.text-capitalize-words {
	text-transform: capitalize;
}


.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-justify {
	text-align: justify;
}

.text-break-word {
	word-break: break-word;
}

.text-zero-spacing {
	line-height: 0;
}