/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* CSS page default */
* {
  box-sizing: border-box;
  font-family: Roboto, Sans-serif;
  user-select: none; /* Standard syntax */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
}
body {
  margin: 0px;
  font-size: 16px;
  color: #440000;
  background-color: #fcfcfc;
}
a {
  text-decoration: none;
  color: #660000;
}
a:active, a:hover {
  color: #ff0000;
}