@font-face {
  font-family: "Royal_Fighter";
  src: url("./fonts/Royal_Fighter.otf");
}

@font-face {
  font-family: "Edit Undo";
  src: url("./fonts/editundo.ttf");
}

* {
  box-sizing: border-box;
}

.disclaimer {
  display: none !important;
}

html {
  font-family: "Royal_Fighter";
  font-size: 1.1vw;
}

body {
  scroll-behavior: smooth;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  
  background-color: white;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  margin: 0;
}

.full-screen {
  width: 100vw;
  height: 100vh;
}

.flex-center-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.flex-center-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
