body{

  background-image: url("../photos/test1.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed; /*scroll*/
  background-position: center; /*resize*/
  background-size: cover;
  margin: 0;
  padding: 0;
}

/*---------------------Scrollbar----------------------------*/

::-webkit-scrollbar{

  width: 10px;
}

::-webkit-scrollbar-track{

  border-radius: 10px;
}

::-webkit-scrollbar-thumb{

  background-color: var(--c5);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover{

  background-color: var(--c6);
}

/*-----------------------------------------------------------*/
