*,
*::after,
*::before{
  box-sizing: border-box;
}

:root{
  font-size: 16px;
  --ticolor: #ff00a0; /* these are good to put in root as they can be used on the fly*/
  --tecolor: #ff124f;
  --combinecolor: #fe75fe;
  --bgcolor: #120458;
  --bgcolor2: #7a04eb;

  --neony: #FFFF00;
  --neong: #39FF14;

  --mainfont: font-family: 'Bebas Neue', sans-serif;
}

body{
  background-color: var(--bgcolor);
  margin:0;
  padding: 0;
  padding-top: 12rem;

  overflow-x: hidden;
}

body::-webkit-scrollbar{
  width: .75rem;
}

body::-webkit-scrollbar-track{
  background: var(--bgcolor2);
}

body::-webkit-scrollbar-thumb{
  background: var(--ticolor);
  border-radius: 20px;
  /* height: 20rem; < just a test*/
}


.navbar{
  background-color: #7a04eb;
  color: #fe75fe;

  position: fixed;

  display: flex;

  top: 0;
  left: 0;
  right: 0;

  align-items: center;
  justify-content: space-between;
  /* find more in the header folder */

  z-index: 100000000;
}

h1{
  color: var(--tecolor);
  font-family: 'Bebas Neue', sans-serif;

  font-style: italic;
  text-align: center;

  font-size: 6rem;
}

h2{
  color: var(--bgcolor);
  font-family: 'Bebas Neue', sans-serif;

  font-style: italic;
  text-align: center;

  margin: 0;
  padding: 0;

  font-size: 15rem;
}

p{
  color: var(--tecolor);
  font-family: 'Bebas Neue', sans-serif;

  font-style: italic;
  text-align: center;

  font-size: 3rem;

  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0;
}
