.btn-radius {
  width: 17em;
  margin: 1em;
  border-radius: 10px;
}

.info-heading {
  margin-left: 1em;
  background: var(--bs-secondary);
  border-radius: 10px;
  border-style: groove;
  border-color: var(--bs-dark);
  opacity: 0.90;
}

.center-grid {
  width: auto;
  display: grid;
  place-items: center;
}

.center-grid-full {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.scroll-label {
  margin-top: auto;
  margin-bottom: 0px;
}

.scroll-desc {
  margin-bottom: auto;
  margin-top: 0px;
}

.frame {
  overflow-x: scroll;
  overflow-y: scroll;
  border: 1px solid black;
  height: 25em;
  width: auto;
  line-height: 1em;
}

.frame::-webkit-scrollbar {
  -webkit-appearance: none;
}

.frame::-webkit-scrollbar:vertical {
  width: 11px;
}

.frame::-webkit-scrollbar:horizontal {
  height: 11px;
}

.frame::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 2px solid white;
  background-color: rgba(0, 0, 0, .5);
}

/* ALIGN CONTENT */

.typewriter {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ADD CURSOR */

.txt-type > .txt {
  border-right: 0.08rem solid #fff;
  padding-right: 2px;
  animation: blink 0.6s infinite;
}

/* ANIMATION */

@keyframes blink {
  0% {
    border-right: 0.08rem solid rgba(255, 255, 255, 1);
  }
  100% {
    border-right: 0.08rem solid rgba(255, 255, 255, 0.2);
  }
}

#page .section-background {
  background: white;
}

#page section * {
  color: black !important;
}

#page .content {
  width: 100%;
}

