:root{
--main-font: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 
--max-width: ;
--atbackground: rgba(23, 23, 23, 0.695);
--paobackground:rgba(27, 27, 27, 0.376);
}

html, body {
margin: 0 auto;
padding: 0;
overflow: auto;
align-items: center;
height: auto;
-webkit-overflow-scrolling: touch;
max-width: var(--max-width);
}


* {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

body {
  margin: 0;
  padding: 0;
  max-width: var(--max-width);
  outline: none;
  -webkit-tap-highlight-color: transparent;
  background-image: url(/Resource/Image/background.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  font-family: var(--main-font);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(64px);
  z-index: -1;
}

img {
touch-action: auto;            
user-select: none;              
-webkit-user-drag: none;       
user-drag: none;             
display: block;              
}

a {
text-decoration: none;
color: inherit;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}

input[type=number] {
-moz-appearance: textfield;
}