.code-div {
  background-color: rgb(30,30,30);
  font-family: monospace;
  color: white;
  border-radius: 1px;
}
.code-li::marker {
  color: gray;
}
.tab {
  margin-left: 30px;
}
.headline {
  padding: 1.25rem 0.5rem;
}
.nostyle {
  color: black;
  text-decoration: none;
}
.div-circle {
   border-radius: 50%;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   width: 30px;
   height: 30px
}
.block-text-m {
   margin-top: 35px;
   margin-left: 50px;
}
.block-img-mr {
   margin-left: 20px;
}
span:not(.nomono) {
  font-family: monospace;
}
.kbd {
  border-radius: 4px;
  background-color: #dfdfdf;
  box-shadow: 0px 2px 0px 2px #41464b !important;
  border-color: black;
  min-width: 18px;
  min-height: 20px;
}
.bold {
  font-weight: 700;
}
.semibold {
  font-weight: 600;
}
#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}
.fadingIn {
brandnameanim {
  width: 4ch;
  overflow: hidden;
  color: white;
  font-family: monospace;
  border-right: 4px solid blue;
  animation: printed-text 5s steps(4),
    flashin-border .75s step-start infinite;
}
@keyframes flashin-border {
    0% {
        border-color: blue;
    }

    50% {
        border-color: transparent;
    }

    100% {
        border-color: blue;
    }
}

@keyframes printed-text {
    from {
        width: 0%;
    }
}

@keyframes fadingIn {
	0% {
		opacity: 0;
    transform: scale(0.5);
	}
	100% {
		opacity: 1;
    transform: scale(1);
	}
}

@keyframes fadingOut {
	0% {
		opacity: 1;
    transform: scale(1);
	}

	100% {
		opacity: 0;
    transform: scale(0.5);
	}
}
