:root {
    --sans-font: 'Lucida Grande','Lucida Sans Unicode','GNU Unifont', Verdana, Helvetica, sans-serif;
    --mono-font: 'Consolas', monospace;
}

body {
    color: white;
    background: black;
    font-family: var(--mono-font);
}

h1, h2, h3 {
    font-family: 'Oswald', 'Impact', sans-serif;
    /* font-weight: 400; */
}
h2 {
    color:#e95dff;
}

h3 {
    font-style: italic;
    color: #efefef;
}
/* h1, h2  {
    text-transform: uppercase;
} */

header {
    margin: auto;
    width: 700px;
    text-align: center;
    margin-top: 50px;
    display: flex;
    align-items: center;
}

#content {
    margin: auto;
    max-width: 1200px;
}

.section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.character {
    width: 550px;
    display: flex;
    border: 1px solid purple;
    margin-bottom: 20px;
}

.character img {
    max-height: 300px;
}
.character .txt {
    margin-left: 10px;
}


::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  ::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
  }
  ::-webkit-scrollbar-thumb {
    background: #330066;
    border: 0px none #ffffff;
    border-radius: 0px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #7700c7;
  }
  ::-webkit-scrollbar-thumb:active {
    background: #000000;
  }
  ::-webkit-scrollbar-track {
    background: #242424;
    border: 0px none #ffffff;
    border-radius: 50px;
  }
  ::-webkit-scrollbar-track:hover {
    background: #666666;
  }
  ::-webkit-scrollbar-track:active {
    background: #333333;
  }
  ::-webkit-scrollbar-corner {
    background: transparent;
  }