<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  list-style: none;
  text-decoration: none;
}

:root {
  --highlight: #f0f8ff; /*#d63a25;    */
}

.logo_img {
  height: 42px;
  width: 42px;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
  color: whitesmoke; /* #1e1c2a; */
  background: linear-gradient(to left, #191a19, #283958, #191a19);
  scrollbar-color: #191a19;
  scrollbar-width: thin;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* width */
::-webkit-scrollbar {
  width: 1px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px linear-gradient(to left, #191a19, #0b0e14, #191a19);
  border-radius: 10px;
  background: #191a19;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: whitesmoke;
  border-radius: 5px;
}

.indicator_group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.indicator_title {
  font-weight: bolder;
  font-size: x-large;
}

.indicator_subtitle {
  font-weight: 300;
  text-align: center;
}

.dropdown {
  overflow: hidden;
  display: flex;
  justify-content: end;
}

.dropdown .dropbtn {
  border: none;
  outline: none;
  background-color: inherit;
  cursor: pointer;
  margin: 0;
  margin-bottom: -12px; /* fixes the gap between the dropdown and the next element */
  margin-top: -12px; /* fixes the gap between the dropdown and the next element */
  width: auto; /* fixes the size of the button that is used to show the user's login */
}

.dropbtn:hover {
  color: var(--highlight);
}

.dropdown-content {
  margin-top: 20pt;
  display: none;
  position: absolute;
  background-color: black;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 8pt;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;

  display: block;
  text-align: center;
}
/*
.dropdown-content a:hover {    
    border-radius: 8pt;       
}*/

.dropdown:hover .dropdown-content {
  display: block;
}

section {
  margin-top: 140px;
  transition: all 0.5s;
}
</pre></body></html>