
body {
  background-color: #fff;
  /**text**/
  color: #fc517c;
  font-family: 'Inconsolata', monospace;
  font-size: 14px;
  text-transform: lowercase;
  max-width: 500px;
  /**page position **/
  position: absolute;
  top: 5%;
  bottom: 5%;
  left: 0;
  right: 0;
  margin: auto;
    overflow-y: hidden;

}

div {
  height: 30%;
  overflow-y: auto;
  overflow-x: hidden;
}

h1 {
  font-size: 20px;
}

  hr{
        height: 1px;
        background-color: white;
        width: 90%;
        border: none;
        margin-bottom: 20px;
        margin-top: 20px;
    }

a { color: #fc517c; }
a:active { color: #a31a3c; }
a:hover { color: #a31a3c; }
      

footer {
  margin-top: 20px;
  font-size: 10px;
  text-align: center;
  font-size: 14px;
  text-transform: lowercase;
}


/*scroollbarr finallyyy */

 /* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #fc517c #fff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 10px;
  }

  *::-webkit-scrollbar-track {
    background: #fff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #fc517c;
    border-radius: 0px;
    border: 3px solid #fff;
  }
