@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,400;0,500;1,100;1,400;1,500&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root{
  --theme1mainbackground:hsl(222, 26%, 31%);

}
html{
  font-family: 'League Spartan', sans-serif;
  font-size: 16px;
  width: 100%;
  background-color: var(--theme1mainbackground);
  height: 100%;
  position: relative;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}
.non-selectable{
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
}