* {
    font-family: Arial, sans-serif;
    --base_text_color: #AEABAF;
    --border_color: #00bfff;
    --base_bg: #121212;
    --accent-color: #ff4d4f;
    margin: 0;
    padding: 1px;
    box-sizing: border-box;
    text-align: center;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-all;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #121212;
    color: var(--base_text_color);
    margin-top: 10em;
}

header {
    display: flex;
    
    flex-direction: column;
    justify-content: center;

    z-index: 1000;
    background: #121212;
    width: 100%;

    position: fixed;
    top: 0;
    z-index: 1000;

    place-content: center;
    place-items: center;
    
}

header img {
    max-width: 50px;
    max-height: 50px;
    border-radius: 15px;
    margin-right: 10px;
}

header h1 {
    font-size: 0.9em;
    color: var(--base_text_color);
    margin-right: 10px;
}

header .search-bar {
    flex-grow: 1;
    max-width: 400px;
    padding: 8px;
    border-radius: 15px;
    background-color: #222;
    color: var(--base_text_color);
    outline: none;
}

.loader {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 0em;
    background-color: transparent;
    place-content: center;
    place-items: center;
}

svg {
    color: var(--accent-color);
}

.nav-div {
    display: flex;
    width: auto;
    flex-direction: row;
    gap: 5px;
}

h4 {
    font-size: 0.9em;
}

button {
  font-weight: bold;
  color: white;
  border-radius: 2rem;
  cursor: pointer;
  width: 95.02px;
  height: 42.66px;
  border: none;
  background-color: var(--border_color);
  display: flex;
  justify-content: center;
  align-items: center;
  place-items: center;
}

button .span-mother {
  display: flex;
  overflow: hidden;
}

button:hover .span-mother {
  position: absolute;
}

button:hover .span-mother span {
  transform: translateY(1.2em);
}

button .span-mother span:nth-child(1) {
  transition: 0.2s;
}

button .span-mother span:nth-child(2) {
  transition: 0.3s;
}

button .span-mother span:nth-child(3) {
  transition: 0.4s;
}

button .span-mother span:nth-child(4) {
  transition: 0.5s;
}

button .span-mother span:nth-child(5) {
  transition: 0.6s;
}

button .span-mother span:nth-child(6) {
  transition: 0.7s;
}

button .span-mother2 {
  display: flex;
  position: absolute;
  overflow: hidden;
}

button .span-mother2 span {
  transform: translateY(-1.2em);
}

button:hover .span-mother2 span {
  transform: translateY(0);
}

button .span-mother2 span {
  transition: 0.2s;
}

button .span-mother2 span:nth-child(2) {
  transition: 0.3s;
}

button .span-mother2 span:nth-child(3) {
  transition: 0.4s;
}

button .span-mother2 span:nth-child(4) {
  transition: 0.5s;
}

button .span-mother2 span:nth-child(5) {
  transition: 0.6s;
}

button .span-mother2 span:nth-child(6) {
  transition: 0.7s;
}
