@import url("fonts.css");
@import url("colors.css");

body {
  background-color: var(--background);
  color: var(--text);
  border: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: var(--accent);
}

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

.indextext {
  width: 30%;
}

.greeter {
  display: flex;
  justify-content: start;
  height: 41px;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.blink {
  border-left: 3px solid var(--text);
  margin-left: 6px;
  animation: blink 1s step-start infinite;
}

.body {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  width: 90%;
  padding-top: 6%;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 15px;
}

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