

/* Main styles */
body {
  display: flex;
  flex-direction: column;
  background-color: rgba(26,27,38,255);
  align-items: center;
  gap: 10px;
}

:root {
  --backlight: rgb(255, 0, 123);
  --fontcol: rgb(255, 167, 221);
}

.subflex-container {
  /* background-color: rgba(75, 75, 75, 0.393); */
  width: 100%;
  color: black;
}

.flex-container {
  /* background: rgba(0, 255, 4, 0.251); */
  display: flex;
}

* {
  font-family: "Roboto";
  color: var(--fontcol);
}
h1, h2 {
  text-shadow: 0 0 10px var(--backlight);
}
h3 {
  color: rgb(255, 157, 157);
  text-shadow: 0 0 10px rgb(255, 0, 0);
}
dt {
  text-shadow: 0 0 10px rgb(255, 187, 0);
  color: rgb(255, 228, 152);
}
dd {
  transition: 500ms;
}
dd:hover {
  transform: scale(1.05);
  text-shadow: 0 0 10px var(--backlight);
  transition: 100ms;
}

@font-face {
  font-family: "Roboto";
  src: url(Roboto/static/Roboto-Medium.ttf);
}

hr {
  border: 1px solid rgba(164, 7, 91, 0.256);
  border-radius: 50px;
  width: 50%;
  transition: 700ms;
}

.main-hr {
  border: 2px solid rgb(255, 136, 206);
  border-radius: 3px;
  box-shadow: 0 0 10px rgb(255, 0, 93);
  width: 80%;
}

/* textboxes */
.textbox {
  background-color: rgba(40, 0, 19, 0.348);
  border-radius: 25px;
  width: 80%;
  max-height: fit-content;
  padding: 20px;
  color: black;
  box-shadow: 0 0 10px rgba(116, 0, 48, 0.37);
  transition: 700ms;
}
.textbox:hover hr {
  border: 1px solid rgba(182, 9, 101, 0.458);
  border-radius: 50px;
  width: 95%;
  transition: 300ms;
}
.textbox:hover {
  transform: translateY(-5px);
  transition: 300ms;
  box-shadow: 0 0 10px rgb(121, 0, 51);
  background-color: rgba(51, 0, 24, 0.437);
}

.subtextbox {
  border-radius: 15px;
  border: 5px solid rgba(255, 122, 173, 0.101);
  background: rgba(0, 0, 0, 0.244);
  max-height: 500px;
  padding: 10px 20px;
  overflow: auto;
  scrollbar-color: rgba(255, 255, 255, 0.163) rgba(227, 4, 4, 0);
}

/* Media files */
.mini-img {
    border-radius: 50px;
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.big-img {
    border-radius: 15px;
    height: 299px;
    margin: 4px;
}

/* Buttons */
.generic-button {
  color: rgb(210, 26, 112);
  border: none;
  background-color: rgba(111, 3, 71, 0.279);
  padding: 8px 13px;
  height: 35px;
  width: 135px;
  border-radius: 50px;
  transition: 200ms;
  cursor: pointer;
}
.generic-button:hover {
  color: var(--fontcol);
  text-shadow: 0 0 2px var(--backlight);
  background-color: rgba(193, 7, 125, 0.366);
  box-shadow: 0 0 5px rgba(232, 5, 145, 0.403);
  transform: rotate(4deg);
  transition: 200ms;
}
.generic-button:active {
  color: rgb(255, 126, 154);
  text-shadow: 0 0 2px  rgb(255, 0, 111);
  background-color: rgba(213, 14, 114, 0.366);
  box-shadow: 0 0 5px rgba(213, 14, 113, 0.666);
  transform: scale(1.05) rotate(4deg);
  transition: 100ms;
}

/* Constant animations */
h1, h2, h3 {
  animation: textanim 4s infinite;
}

@keyframes textanim {
  0% {
    transform: rotate(-2deg);
  }
  50% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(-2deg);
  }
}

/* Entrance */