* {
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: var(--font-family);
}
*:not(img, svg) {
  display: flex;
}
title, script {
  display: none;
}
html {
  width: 100dvw;
  height: 100dvh;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
	background-size: cover;
	background: var(--background-color);
}
body {
  margin: 0px;
  padding: 0px;
  height: 100dvh;
  width: 100dvw;
  overflow: auto;
  background: var(--background-color);
  flex-direction: column;
}
body::-webkit-scrollbar {
  display: none;
}

:root {
  --background-color: rgba(254, 254, 254, 1);
}

input[type=search]::-ms-clear {  display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal {  display: none; width : 0; height: 0; }
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }

textarea, input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  resize: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}

:root {
  --page-horizontal-padding: 40px;
  --page-vertical-padding: 20px;

  --font-family: 'Universe Condensed', Arial, Helvetica, sans-serif;
}

.display-none {
  display: none !important;
}
p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

@media only screen and (min-width: 1920) {
  :root {
    --page-horizontal-padding: calc((100dvw - 1920) / 2 + 40px);
  }
}
@media only screen and (max-width: 800px) {
  :root {
    --page-horizontal-padding: 30px;
  }
}
@media only screen and (max-width: 700px) {
  :root {
    --page-horizontal-padding: 20px;
  }
}
@media only screen and (max-width: 500px) {
  :root {
    --page-horizontal-padding: 15px;
  }
}

@font-face {
  font-family: 'Universe Condensed';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: local('Universe Condensed'), url('/font/universcondensed_medium.ttf') format('truetype');
}
