@font-face {
  font-family: "Propo";
  src: url("media/Propo.ttf");
}
@font-face {
  font-family: "Mono";
  src: url("media/Mono.ttf");
}
html,
body {
  margin: 0;
}

body {
  background: #1f2335;
}

main {
  font-family: "Propo", sans-serif;
  color: #c0caf5;
}

.button {
  display: inherit;
  width: 100%;
  height: 100%;
  background: #565f89;
  border-radius: 40%;
  box-shadow: #24283b 0px 1px 3px, #1f2335 0px 1px 2px;
  transition: 0.1s;
}

.button:hover {
  background: #737aa2;
}

.button:active {
  box-shadow: #1f2335 0px 1px 3px, #1f2335 0px 1px 2px, #24283b 0px 30px 60px -12px inset, #1f2335 0px 18px 36px -18px inset;
}

.button img, .button svg {
  width: 70%;
  height: 70%;
  color: #c0caf5;
  fill: #c0caf5;
  margin: 15%;
}

.inside-part, .st-main-bot, .st-main-top, .st-sidebar-comp, .st-header {
  box-shadow: #24283b 0px 30px 60px -12px inset, #1f2335 0px 18px 36px -18px inset;
}

.foreground {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 100;
}

.background {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

.bg-blurry-1 {
  width: 30vmax;
  height: 40vmax;
  background: #9d7cd8;
  position: fixed;
  left: 70%;
  top: 10%;
  border-radius: 30vmax;
  filter: blur(100vmax);
  scale: 2;
  opacity: 0.3;
  mix-blend-mode: color-dodge;
  rotate: 30deg;
  animation: slowspin 35s infinite ease-in-out;
}

.bg-blurry-2 {
  width: 50vmax;
  height: 20vmax;
  background: #3d59a1;
  position: fixed;
  left: -10%;
  top: -10%;
  border-radius: 20vmax;
  filter: blur(100vmax);
  scale: 2;
  opacity: 0.4;
  mix-blend-mode: color-dodge;
  rotate: 20deg;
  animation: slowspin 25s infinite ease-in-out reverse;
}

@keyframes slowspin {
  50% {
    transform: rotate(90deg);
  }
}
.nav_element {
  width: fit-content;
  position: fixed;
  right: -3rem;
  background: #545c7e15;
  backdrop-filter: blur(1rem);
  border-radius: 2.5rem 0 0 2.5rem;
  top: 10%;
  height: fit-content;
  transition: ease-in-out 0.5s;
  flex-direction: column;
  align-items: center;
  z-index: 1500;
}

.nav_element:hover {
  right: -1rem;
}

.nav_btn_container {
  margin: 1rem;
  width: 3.5rem;
  height: 3.5rem;
}

.st {
  margin: auto;
  width: 100%;
  max-width: 100rem;
  height: 100%;
  font-family: "Mono", monospace;
  transition: 0.1s;
}

.st * {
  transition: 0.1s;
  z-index: 500;
}

.st-header {
  width: calc(100% - 2rem);
  height: 5rem;
  margin: 1rem;
  background: #292e4280;
  border-radius: 1.5rem;
}

.st-body {
  width: 100%;
  height: calc(100% - 7rem);
  display: flex;
}

.st-left-sidebar {
  width: 20rem;
  height: 98%;
  margin: 0 1rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex: 1;
}

.st-sidebar-comp {
  background: #292e4280;
  border-radius: 1.5rem;
  height: calc((100% - 2rem) / 3);
  width: 100%;
}

.st-main {
  margin: 0 1rem 1rem 0;
  flex: 2;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: space-between;
}

.st-main-top {
  border-radius: 1.5rem;
  background: #292e4280;
  flex: 3;
}

.st-main-bot {
  border-radius: 1.5rem;
  background: #292e4280;
  flex: 1;
}
