<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
:root {
 
  --font_family: 'Inter', sans-serif;

 
  --font_size: 16px;

  
  --background_color: #00000079;
  --background_image: url('../img/minecraft-dark.png');

  --background_image_L: url('../img/Winter-Light.JPG');

  
  --image_border_color: #1f232e;
  --image_border_px: 3px;

  
  --image_width: 140px;
  --image_height: 140px;
  
  
  --title_color: #fff;
  --description_color: #fff;

  --title_color_L: #16171a;
  --description_color_L: #16171a;

  
  --svg_color: #fff;

  
  --menu_background_color: #1d1e24;
  --menu_text_color: #fff;
  --menu_active_text_color: #6aabba;

  --menu_background_color_L: #efe6dab5;
  --menu_text_color_L: #16171a;
  --menu_active_text_color_L: #5b71b3e6;

  
  --button_background_color: #1d1e24;
  --button_text_color: #fff;
  --button_text_hover_color: #6aabba;

  --button_background_color_L: #efe6dab5;
  --button_text_color_L: #16171a;
  --button_text_hover_color_L: #5b71b3e6;

  
  --textarea_background_color: #1d1e24;
  --textarea_text_color: #fff;
  --textarea_link_text_color: #5b8395;

  --textarea_background_color_L: #efe6dab5;
  --textarea_text_color_L: #16171a;
  --textarea_link_text_color_L: #5b71b3e6;

  
  --footer_background_color: rgba(32, 32, 36, 0.851);
  --footer_text_color: #fff;
  --footer_link_text_color: #689ca5;

  --footer_background_color_L: rgba(232, 232, 232, 0.674);
  --footer_text_color_L: #16171a;
  --footer_link_text_color_L: #5b71b3e6;
}


* {
  scrollbar-width: thin;
  scrollbar-color: rgb(115, 149, 167) rgb(17, 31, 42);
}

*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: rgb(17, 31, 42);
}

*::-webkit-scrollbar-thumb {
  background-color: rgb(115, 149, 167);
  border-radius: 20px;
  border: 3px solid rgb(17, 31, 42);
}

body.dark-mode {
  --button_background_color: var(--button_background_color_L);
  --button_text_color: var(--button_text_color_L);
  --button_text_hover_color: var(--button_text_hover_color_L);
  --textarea_background_color: var(--textarea_background_color_L);
  --textarea_text_color: var(--textarea_text_color_L);
  --background_image: var(--background_image_L);
  --textarea_link_text_color: var(--textarea_link_text_color_L);
  --footer_background_color: var(--footer_background_color_L);
  --footer_text_color: var(--footer_text_color_L);
  --footer_link_text_color: var(--footer_link_text_color_L);
  --menu_text_color: var(--menu_text_color_L);
  --menu_active_text_color: var(--menu_active_text_color_L);
  --menu_background_color: var(--menu_background_color_L);
  --title_color: var(--title_color_L);
  --title_description_color_L: var(--title_color_L);
  font: var(--font_size) var(--font_family);
  font-weight: 400;
  line-height: 1.5;
  background: var(--background_color) var(--background_image) center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

body {
  font: var(--font_size) var(--font_family);
  font-weight: 400;
  line-height: 1.5;
  background: var(--background_color) var(--background_image) center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 2000px) {
  body {
    font: var(--font_size) var(--font_family);
    font-weight: 400;
    line-height: 1.5;
    background: var(--background_color) var(--background_image) no-repeat center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.intro,
.intro a {
  color: #fff;
}


.snowflake {
  color: #e9fffe;
  font-size: 0.5em;
  font-family: Arial;
  text-shadow: 0 0 1px #000;
}

@-webkit-keyframes snowflakes-fall {
  0% {
    top: -1%;
  }
  100% {
    top: 100%;
  }
}
@-webkit-keyframes snowflakes-shake {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}
@keyframes snowflakes-shake {
  0% {
    transform: translateX(0px);
  }
  40% {
    transform: translateX(90px);
  }
  100% {
    transform: translateX(-30px);
  }
}
.snowflake {
  position: fixed;
  top: -10%;
  z-index: 9999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  -webkit-animation-name: snowflakes-fall, snowflakes-shake;
  -webkit-animation-duration: 10s, 10s;
  -webkit-animation-timing-function: linear, ease-in-out;
  -webkit-animation-iteration-count: infinite, infinite;
  -webkit-animation-play-state: running, running;
  animation-name: snowflakes-fall, snowflakes-shake;
  animation-duration: 10s, 10s;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-play-state: running, running;
}
.snowflake:nth-of-type(0) {
  left: 8%;
  -webkit-animation-delay: 0s, 0s;
  animation-delay: 0s, 0s;
}
.snowflake:nth-of-type(1) {
  left: 15%;
  -webkit-animation-delay: 2.5s, 2.5s;
  animation-delay: 2.5s, 2.5s;
}
.snowflake:nth-of-type(2) {
  left: 19%;
  -webkit-animation-delay: 6s, 6s;
  animation-delay: 6s, 6s;
}
.snowflake:nth-of-type(3) {
  left: 23%;
  -webkit-animation-delay: 3s, 3s;
  animation-delay: 3s, 3s;
}
.snowflake:nth-of-type(4) {
  left: 31%;
  -webkit-animation-delay: 7.25s, 7.25s;
  animation-delay: 7.25s, 7.25s;
}
.snowflake:nth-of-type(5) {
  left: 39%;
  -webkit-animation-delay: 4.11s, 4.11s;
  animation-delay: 4.11s, 4.11s;
}
.snowflake:nth-of-type(6) {
  left: 48%;
  -webkit-animation-delay: 3.4s, 3.4s;
  animation-delay: 3.4s, 3.4s;
}
.snowflake:nth-of-type(7) {
  left: 57%;
  -webkit-animation-delay: 5.87s, 5.87s;
  animation-delay: 5.87s, 5.87s;
}
.snowflake:nth-of-type(8) {
  left: 63%;
  -webkit-animation-delay: 11.6s, 11.6s;
  animation-delay: 11.6s, 11.6s;
}
.snowflake:nth-of-type(9) {
  left: 69%;
  -webkit-animation-delay: 2.33s, 2.33s;
  animation-delay: 2.33s, 2.33s;
}
.snowflake:nth-of-type(10) {
  left: 74%;
  -webkit-animation-delay: 6.49s, 6.49s;
  animation-delay: 6.49s, 6.49s;
}

.snowflake:nth-of-type(11) {
  left: 79%;
  -webkit-animation-delay: 8.2s, 8.2s;
  animation-delay: 8.2s, 8.2s;
}

.snowflake:nth-of-type(12) {
  left: 86%;
  -webkit-animation-delay: 5.79s, 5.79s;
  animation-delay: 5.79s, 5.79s;
}
.snowflake:nth-of-type(13) {
  left: 92%;
  -webkit-animation-delay: 1.77s, 1.77s;
  animation-delay: 1.77s, 1.77s;
}

.crimis_button_item {
  color: var(--button_text_color);
  background-color: var(--button_background_color);
  width: 20em;
  border-radius: 1em;
  min-height: 3.7em;
  text-align: center;
  cursor: pointer;
}

.main_small_crimis_button_list {
  display: flex;
  flex-direction: row;
}

.main_small_crimis_a_item {
  margin-top: 1em;
  text-decoration: none;
}

.main_tiny_crimis_a_item {
  margin-top: 1em;
  text-decoration: none;
}

.main_small_crimis_a_item + .main_small_crimis_a_item {
  margin-left: 10px;
}

.main_crimis_a_item + .main_small_crimis_a_item {
  margin-left: 10px;
}

.main_tiny_crimis_a_item + .main_crimis_a_item {
  margin-left: 10px;
}

.main_crimis_a_item {
  margin-top: 1em;
  text-decoration: none;
}

.main_small_crimis_button_item:hover,
.main_crimis_button_item:hover {
  color: var(--button_text_hover_color);
  transform: scale(1.02);
  transition: 0.1s ease;
}

.main_tiny_crimis_button_item:hover,
.crimis_button_item:hover {
  color: var(--button_text_hover_color);
  transform: scale(1.02);
  transition: 0.1s ease;
}

.main_small_crimis_button_item {
  color: var(--button_text_color);
  background-color: var(--button_background_color);
  width: 7em;
  border-radius: 1em;
  min-height: 3.7em;
  text-align: center;
  cursor: pointer;
}

.main_tiny_crimis_button_item {
  color: var(--button_text_color);
  background-color: var(--button_background_color);
  width: 3em;
  border-radius: 1em;
  min-height: 3.7em;
  text-align: center;
  cursor: pointer;
}


.demo {
  font-family: 'Raleway', sans-serif;
  color: #fff;
  display: block;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
}
.demo a {
  font-family: 'Raleway', sans-serif;
  color: #000;
}

.flex_column_center {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.flex_no_wrap_row_center {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}


#clipboardMessages {
  position: fixed;
  bottom: 60px;
  right: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.clipboardMessage {
  padding: 12px;
  background-color: var(--footer_background_color);
  color: var(--button_text_color);
  border-radius: 0.8em;
  margin-top: 10px;
  opacity: 0;
  animation: fadeIn 1s forwards, fadeOut 0.2s 2.2s forwards;
}
@keyframes fadeIn {
  from {
    opacity: 1;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(200px);
  }
}



.header_img {
  padding-top: -2em;
}

.header_img img {
  height: var(--image_height);
  width: var(--image_width);
  border: var(--image_border_px) solid var(--image_border_color);
  border-radius: 50%;
  margin-bottom: 0.5em;
}

.header_text h1 {
  color: var(--title_color);
  font-size: 2em;
}
.flex_row_center {
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
}

.header_text h2 {
  color: var(--description_color);
  font-size: 1.5em;
  text-align: center;
}


@media (max-width: 768px) {
  .flex_row_center {
    text-align: center;
  }

  .header_text h2 {
    white-space: nowrap;
    font-size: 1em;
    padding-left: 1em;
    padding-right: 1em;
  }

  .header_text h2::before {
    white-space: pre;
  }
}



#header_nav_menu_item_1 {
  color: var(--menu_active_text_color);
}

#header_nav_menu_item_2,
#header_nav_menu_item_3 {
  color: var(--menu_text_color);
}

.header_nav_menu_list {
  padding-top: 1em;
  margin-left: 1em;
  margin-right: 1em;
}

.header_nav_menu_item {
  color: var(--menu_text_color);
  background-color: var(--menu_background_color);
  text-align: center;
  list-style-type: none;
  cursor: pointer;
  padding: 0.5em;
  padding-left: 1.3em;
  padding-right: 1.3em;
  border-radius: 0.5em;
  cursor: pointer;
  transition: 0.1s ease;
  font-size: 1.1em;
}

.header_nav_menu_item + .header_nav_menu_item {
  margin-left: 0.4em;
}



main {
  margin-bottom: auto;
}

#main_section_container_2,
#main_section_container_3 {
  display: none;
}

.main_a_item {
  margin-top: 1em;
  text-decoration: none;
}

.main_text_item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--button_text_color);
  background-color: var(--button_background_color);
  width: 41em;
  margin-top: 1em;
  padding: 0.8em;
  border-radius: 0.5em;
  min-height: 3.7em;
  text-align: center;
  opacity: 1;
}

.main_text_item-c {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--button_text_color);
  background-color: var(--button_background_color);
  width: 70em;
  margin-top: 1em;
  padding: 0.8em;
  border-radius: 0.5em;
  min-height: 3.7em;
  text-align: center;
}

.main_button_item {
  color: var(--button_text_color);
  background-color: var(--button_background_color);
  width: 41em;
  border-radius: 1em;
  min-height: 3.7em;
  text-align: center;
  cursor: pointer;
  opacity: 0.7;
}

.main_small_button_list {
  display: flex;
  flex-direction: row;
}

.main_small_a_item {
  margin-top: 1em;
  text-decoration: none;
}

.main_small_a_item + .main_small_a_item {
  margin-left: 10px;
}

.main_small_button_item:hover,
.main_button_item:hover {
  color: var(--button_text_hover_color);
  transform: scale(1.02);
  transition: 0.1s ease;
  opacity: 1;
}

.main_small_button_item {
  color: var(--button_text_color);
  background-color: var(--button_background_color);
  width: calc(41em / 2 - 5px);
  border-radius: 1em;
  min-height: 3.7em;
  text-align: center;
  cursor: pointer;
  opacity: 0.7;
  
}



.main_selection_menu_item {
  background-color: var(--button_background_color);
  list-style: none;
  border-radius: 0.3em;
  margin-top: 0.4em;
  width: calc(7.5em / 2 - 5px);
  float: right;
  transition: 0.3s ease-in;
  text-decoration: none;
}

.main_selection_menu_button_item {
  color: var(--button_text_color);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(7.5em / 2 - 5px);
  height: calc(7.5em / 2 - 5px);
  border-radius: 0.3em;
  position: relative;
  &amp;:hover,
  &amp;:focus,
  &amp;.active {
    background-color: var(--button_text_hover_color);
    outline: 0;

    span {
      transform: scale(1);
      opacity: 1;
    }
  }

  i {
    font-size: 1.375rem;
  }

  span {
    position: absolute;
    background-color: var(--button_background_color);
    white-space: nowrap;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    right: calc(100% + 0.5rem);
    transform-origin: center left;
    transform: scale(0);
    opacity: 0;
    transition: 0.2s ease;
    &amp;:before {
      content: '';
      display: block;
      width: 12px;
      height: 12px;
      position: absolute;
      background-color: var(--button_background_color);
      right: -5px;
      top: 50%;
      transform: translatey(-50%) rotate(45deg);
      border-radius: 3px;
    }
  }
}

li:nth-child(6) {
  margin-top: 5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--button_text_hover_color);
}

.main_selection_item {
  margin-top: 1em;
  text-decoration: none;
  float: right;
  margin-right: 1em;
}

.main_selection_button_item {
  color: var(--button_text_color);
  background-color: var(--button_background_color);
  width: calc(7.5em / 2 - 5px);
  border-radius: 0.3em;
  min-height: 1.7em;
  min-width: 1.7em;
  display: flex;
  cursor: pointer;
}

.line {
  fill: none;
  stroke: var(--button_text_color);
  stroke-width: 6;
  transition: stroke 750ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dasharray 750ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 750ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 4;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 4;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 4;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke: var(--menu_active_text_color);
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke: var(--menu_active_text_color);
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke: var(--menu_active_text_color);
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.dropdown-menu {
  display: none;
  position: fixed;
}

.main_selection_button_item.opened + .dropdown-menu {
  display: block;
}



.footer_div_item {
  color: var(--footer_text_color);
  background: var(--footer_background_color);
  padding: 1em;
  margin-top: 1.5em;
}

.footer_a_item {
  color: var(--footer_link_text_color);
  text-decoration: none;
}

.flex_row_footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .flex_row_footer {
    flex-direction: column; 
    text-align: center; 
  }
}



@media (max-width: 768px) {
  .main_text_item {
    width: 92vw;
  }

  .main_small_button_item {
    width: calc(92vw / 2 - 5px);
  }

  .main_button_item {
    width: 92vw;
  }
}
</pre></body></html>