@import url("https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.8.3/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans");
@import url("https://fonts.googleapis.com/css2?family=Roboto");
@import url("https://fonts.googleapis.com/css2?family=Road+Rage");
* {
  /* Grays */
  --gray00: #eee;
  --gray01: #bbb;
  --gray02: #888;
  --gray03: #444;
  --gray04: #222;
  /* Colors */
  --red1: #bb0008;
  --blue1: #1d71ff;
  --blue2: #0038f2;
  --blue3: #0000cc;
  --green1: #00a402;
  --orange1: #ffaf24;
  /* Brands Colors */
  --google: #ff0a00;
  --facebook: #0018ff;
  --twitter: #0081ff;
  --github: #000000;
  --discord: #b92bff;
  --microsoft: #ff0a00;
  --xbox: #00b83f;
}

/* topher-lee.nft */
.b,
* .b {
  font-weight: bold;
}

.i,
* .i {
  font-style: italic;
}

.flex,
* .flex {
  display: flex;
}

.col,
* .col {
  display: flex;
  flex-direction: column;
}

.row,
* .row {
  display: flex;
  flex-direction: row;
}

.wrap,
* .wrap {
  display: flex;
  flex-wrap: wrap;
}

.start,
* .start {
  display: flex;
  justify-content: flex-start;
}

.left,
* .left {
  display: flex;
  justify-content: left;
}

.center,
* .center {
  display: flex;
  justify-content: center;
}

.right,
* .right {
  display: flex;
  justify-content: right;
}

.end,
* .end {
  display: flex;
  justify-content: flex-end;
}

.between,
* .between {
  display: flex;
  justify-content: space-between;
}

.around,
* .around {
  display: flex;
  justify-content: space-around;
}

.grow-1,
* .grow-1 {
  flex-grow: 1;
}

.grow-2,
* .grow-2 {
  flex-grow: 2;
}

.grow-3,
* .grow-3 {
  flex-grow: 3;
}

.grow-4,
* .grow-4 {
  flex-grow: 4;
}

.grow-5,
* .grow-5 {
  flex-grow: 5;
}

.grow-6,
* .grow-6 {
  flex-grow: 6;
}

.grow-10,
* .grow-10 {
  flex-grow: 10;
}

.mr-1,
* .mr-1 {
  margin-right: 0.1rem;
}

.mr-10,
* .mr-10 {
  margin-right: 1rem;
}

.mr-auto,
* .mr-auto {
  margin-right: auto;
}

.ml-1,
* .ml-1 {
  margin-left: 0.1rem;
}

.ml-10,
* .ml-10 {
  margin-left: 1rem;
}

.ml-auto,
* .ml-auto {
  margin-left: auto;
}

/* https://www.w3schools.com/howto/howto_css_custom_scrollbar.asp */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--back);
}

::-webkit-scrollbar-track:hover {
  background: var(--back2);
}

::-webkit-scrollbar-thumb {
  width: 8px;
  background: var(--text);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text2);
}

/* Utilites */
.seperator,
* .seperator {
  width: auto;
  margin: 0.5rem 0;
  border-top: 3px solid var(--txt);
}

.hidden,
* .hidden {
  display: none !important;
}

#splash {
  z-index: 10;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
#splash.hidden {
  display: none;
}
#splash #splash-header {
  top: 0;
  width: 100%;
  height: 2rem;
}
#splash #splash-icon {
  width: 50%;
}
#splash #splash-footer {
  bottom: 0;
  width: 100%;
  height: 2rem;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --accent: red;
  --back: var(--gray04);
  --text: var(--gray00);
  --back2: var(--gray03);
  --text2: var(--gray01);
  font-size: 16px;
  font-family: "Roboto";
}

html {
  padding: 0;
  margin: 0;
}

body {
  display: flex;
  flex-direction: var(--body-direction);
  width: 100vw;
  height: 100vh;
  background-image: url(../assets/images/tycho8.jpg);
  background-size: cover;
  overflow: none;
}
body header {
  display: flex;
  flex-direction: row;
  width: 100vw;
  height: 2.4rem;
  z-index: 2;
  top: 0;
  position: fixed;
  background-color: var(--back2);
  overflow: hidden;
}
body header a {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  width: auto;
  height: 2rem;
  margin: 0.2rem 0 0.2rem 0.2rem;
  cursor: pointer;
}
body header a img {
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 0.2rem;
}
body header a h1 {
  color: var(--text);
  font-size: 1.8rem;
}
body header a h1:hover {
  color: var(--accent);
  font-style: italic;
}
body header button {
  width: 2rem;
  height: 2rem;
  margin: 0.1rem;
  background-color: var(--back);
  color: var(--text);
  cursor: pointer;
  border: none;
  border-radius: 0;
  transition: border-radius 500 ease;
}
body header button .icon {
  color: var(--text);
}
body header button:hover {
  background-color: var(--back);
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 4px;
}
body header button:hover .icon {
  color: var(--accent);
}
body header button:active {
  background-color: var(--back2);
  color: var(--back);
  border: 2px solid var(--back);
  border-radius: 4px;
}
body header button:active .icon {
  color: var(--back);
}
body header button:first-of-type {
  margin-left: 1rem;
}
body header button:last-of-type {
  margin-right: 1rem;
}
body nav {
  display: flex;
  background-color: var(--back2);
  width: 100vw;
  height: var(--nav-height);
}
body nav ul,
body nav ol {
  display: flex;
  width: 100%;
  height: 100%;
}
body nav ul li,
body nav ol li {
  display: flex;
  flex-direction: row;
  width: auto;
  min-width: 6rem;
  max-width: 10rem;
  height: 2.2rem;
  text-align: center;
}
body nav ul li a,
body nav ol li a {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  text-align: center;
  justify-content: space-between;
  font-size: 0.8rem;
  width: 100%;
  height: 100%;
  border: none;
  border-color: var(--accent);
  border-style: solid;
  border-width: 0rem;
  background-color: var(--back);
  color: var(--text);
  padding: 0.1rem;
}
body nav ul li a .icon,
body nav ul li a .bi,
body nav ul li a .fa,
body nav ul li a .fa-brands,
body nav ul li a .fa-solid,
body nav ol li a .icon,
body nav ol li a .bi,
body nav ol li a .fa,
body nav ol li a .fa-brands,
body nav ol li a .fa-solid {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--text2);
  background-color: var(--blue);
  margin: 0.5rem 0.1rem;
  margin-right: auto;
}
body nav ul li a .text,
body nav ol li a .text {
  width: auto;
  height: 1.2rem;
  display: var(--nav-text-display);
  height: 1.2rem;
  color: var(--text2);
  background-color: var(--green);
  margin: 0.5rem 0.2rem;
}
body nav ul li a:hover,
body nav ol li a:hover {
  border: var(--nav-border);
  border-color: var(--accent);
  border-style: solid;
  border-width: 0 0 2px 0;
  font-style: italic;
}
body nav ul li a:hover .icon,
body nav ul li a:hover .bi,
body nav ul li a:hover .fa,
body nav ul li a:hover .fa-brands,
body nav ul li a:hover .fa-solid,
body nav ol li a:hover .icon,
body nav ol li a:hover .bi,
body nav ol li a:hover .fa,
body nav ol li a:hover .fa-brands,
body nav ol li a:hover .fa-solid {
  color: var(--accent);
}
body nav ul li a:hover .text,
body nav ol li a:hover .text {
  color: var(--text);
  font-style: italic;
}
body nav ul li a:active,
body nav ol li a:active {
  background-color: var(--text);
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
body nav ul li a:active .icon,
body nav ul li a:active .bi,
body nav ul li a:active .fa,
body nav ul li a:active .fa-brands,
body nav ul li a:active .fa-solid,
body nav ol li a:active .icon,
body nav ol li a:active .bi,
body nav ol li a:active .fa,
body nav ol li a:active .fa-brands,
body nav ol li a:active .fa-solid {
  color: var(--back);
}
body nav ul li a:active .text,
body nav ol li a:active .text {
  color: var(--accent);
  font-weight: bold;
}
body main {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  margin: 2.7rem 0 2.5rem 0.3rem;
  overflow-y: scroll;
}
body main section {
  padding: 0.2rem;
  background-color: var(--back2);
  color: var(--text2);
  margin: 0 0.3rem 0 0;
  border: 2px solid var(--back);
  box-shadow: none;
  border-radius: 0;
  transition: border-radius 500 ease;
}
body main section h1,
body main section h2,
body main section p {
  padding: 0.1rem;
}
body main section h1 a,
body main section h2 a,
body main section p a {
  text-decoration: underline;
  color: var(--text);
}
body main section h1 a:hover,
body main section h2 a:hover,
body main section p a:hover {
  font-style: italic;
  color: var(--text);
}
body main section h1 a:visited,
body main section h2 a:visited,
body main section p a:visited {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
}
body main section ul,
body main section ol {
  display: flex;
  width: 100%;
  height: 100%;
}
body main section ul li,
body main section ol li {
  display: flex;
  flex-direction: row;
  width: auto;
  min-width: 6rem;
  max-width: 10rem;
  height: 2.2rem;
  text-align: center;
}
body main section ul li a,
body main section ol li a {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  text-align: center;
  justify-content: space-between;
  font-size: 0.8rem;
  width: 100%;
  height: 100%;
  border: none;
  border-color: var(--accent);
  border-style: solid;
  border-width: 0rem;
  background-color: var(--back);
  color: var(--text);
  padding: 0.1rem;
}
body main section ul li a .icon,
body main section ul li a .bi,
body main section ul li a .fa,
body main section ul li a .fa-brands,
body main section ul li a .fa-solid,
body main section ol li a .icon,
body main section ol li a .bi,
body main section ol li a .fa,
body main section ol li a .fa-brands,
body main section ol li a .fa-solid {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--text2);
  background-color: var(--blue);
  margin: 0.5rem 0.1rem;
  margin-right: auto;
}
body main section ul li a .text,
body main section ol li a .text {
  width: auto;
  height: 1.2rem;
  display: var(--nav-text-display);
  height: 1.2rem;
  color: var(--text2);
  background-color: var(--green);
  margin: 0.5rem 0.2rem;
}
body main section ul li a:hover,
body main section ol li a:hover {
  border: var(--nav-border);
  border-color: var(--accent);
  border-style: solid;
  border-width: 0 0 2px 0;
  font-style: italic;
}
body main section ul li a:hover .icon,
body main section ul li a:hover .bi,
body main section ul li a:hover .fa,
body main section ul li a:hover .fa-brands,
body main section ul li a:hover .fa-solid,
body main section ol li a:hover .icon,
body main section ol li a:hover .bi,
body main section ol li a:hover .fa,
body main section ol li a:hover .fa-brands,
body main section ol li a:hover .fa-solid {
  color: var(--accent);
}
body main section ul li a:hover .text,
body main section ol li a:hover .text {
  color: var(--text);
  font-style: italic;
}
body main section ul li a:active,
body main section ol li a:active {
  background-color: var(--text);
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
body main section ul li a:active .icon,
body main section ul li a:active .bi,
body main section ul li a:active .fa,
body main section ul li a:active .fa-brands,
body main section ul li a:active .fa-solid,
body main section ol li a:active .icon,
body main section ol li a:active .bi,
body main section ol li a:active .fa,
body main section ol li a:active .fa-brands,
body main section ol li a:active .fa-solid {
  color: var(--back);
}
body main section ul li a:active .text,
body main section ol li a:active .text {
  color: var(--accent);
  font-weight: bold;
}
body main section:hover {
  color: var(--text);
  border-radius: 4px;
  box-shadow: 0 0 2px 2px var(--back2);
}
body main section:hover h1,
body main section:hover h2 {
  color: var(--text);
}
body main .overlay {
  position: fixed;
  width: 8rem;
  top: 2.7rem;
  left: 1rem;
}
body main .overlay p {
  width: 100%;
  height: 1.2rem;
}
body main img {
  margin: auto;
  max-width: 10em;
  object-fit: cover;
}
body footer {
  display: flex;
  flex-direction: row;
  width: 100vw;
  height: 2.2rem;
  font-size: 0.8rem;
  color: var(--text2);
  background-color: var(--back2);
  border-top: 2px solid var(--accent);
  padding: 0.5rem;
  bottom: 0;
  position: fixed;
  overflow: hidden;
}
body footer p {
  width: auto;
  text-align: center;
}
body footer a {
  text-decoration: none;
  color: var(--accent);
  cursor: pointer;
}
body footer a:hover {
  font-style: italic;
}
body canvas {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: -10;
}
body ol.globe-list, body ul.globe-list {
  width: 100%;
}
body ol.globe-list li.globe-item, body ul.globe-list li.globe-item {
  width: 100%;
  height: 2rem;
  margin-bottom: 0.1rem;
  transition: height 300ms ease;
}
body ol.globe-list li.globe-item .main-pane, body ul.globe-list li.globe-item .main-pane {
  top: 0;
  width: 100%;
  height: 2rem;
}
body ol.globe-list li.globe-item .main-pane .name-pane, body ul.globe-list li.globe-item .main-pane .name-pane {
  width: auto;
  height: 2rem;
}
body ol.globe-list li.globe-item .main-pane .img-pane, body ul.globe-list li.globe-item .main-pane .img-pane {
  width: 2rem;
  height: 2rem;
}
body ol.globe-list li.globe-item .details-pane, body ul.globe-list li.globe-item .details-pane {
  display: block;
}
body ol.globe-list li.globe-item .details-pane.hidden, body ul.globe-list li.globe-item .details-pane.hidden {
  display: none;
}
body ol.globe-list li.globe-item.star-item, body ul.globe-list li.globe-item.star-item {
  width: 100%;
  height: 3rem;
}
body ol.globe-list li.globe-item.star-item .main-pane, body ul.globe-list li.globe-item.star-item .main-pane {
  width: 100%;
  height: 2rem;
}
body ol.globe-list li.globe-item.star-item .radius-pane, body ul.globe-list li.globe-item.star-item .radius-pane {
  width: 100%;
  height: 1rem;
}
body ol.globe-list li.globe-item.star-item:hover, body ul.globe-list li.globe-item.star-item:hover {
  background-color: var(--gray0);
}
body ol.globe-list li.globe-item.planet-item:hover, body ul.globe-list li.globe-item.planet-item:hover {
  height: 4rem;
  background-color: var(--gray0);
}
body ol.globe-list li.globe-item.planet-item:hover .details-pane, body ul.globe-list li.globe-item.planet-item:hover .details-pane {
  display: flex;
  width: 100%;
  height: 2rem;
}
body ol.globe-list li.globe-item.moon-item:hover, body ul.globe-list li.globe-item.moon-item:hover {
  height: 4rem;
  background-color: var(--gray0);
}
body ol.globe-list li.globe-item.moon-item:hover .details-pane, body ul.globe-list li.globe-item.moon-item:hover .details-pane {
  display: flex;
  width: 100%;
  height: 2rem;
}
body .details-pane {
  display: none;
  width: 100%;
  height: 2rem;
}
body .details-pane.hidden {
  display: none;
}

@media screen and (min-size: 720px) {
  :root {
    --body-direction: row;
    --nav-width: auto;
    --nav-height: 2rem;
    --nav-direction: row;
    --nav-text-display: block;
    --nav-border: 0 0 2px 0;
    --nav-border-color: var(--accent);
    --nav-to-main-padding: 2.2rem 0 0 0;
  }
}
@media screen and (max-size: 719px) {
  :root {
    --body-direction: column;
    --nav-width: 2rem;
    --nav-height: 100vh;
    --nav-direction: column;
    --nav-text-display: none;
    --nav-border: 0 2px 0 0;
    --nav-border-color: var(--accent);
    --nav-to-main-padding: 0 2.7rem 0 0;
  }
}
.light {
  --back: var(--gray00);
  --text: var(--gray04);
  --back2: var(--gray01);
  --text2: var(--gray03);
  --accent: blue;
}

.dark {
  --back: var(--gray04);
  --text: var(--gray00);
  --back2: var(--gray03);
  --text2: var(--gray01);
  --accent: red;
}

input[type=submit],
input[type=button],
input[type=reset],
input[type=color] {
  cursor: pointer;
}

/*# sourceMappingURL=styles.css.map */
