@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
body {
  color: black;
  background: cornsilk;
}

a {
  color: blue;
}

a:hover {
  color: blue;
}

/* base */
/* xs */
@media screen and (max-width: 600px) {
  html {
    font-size: 3vmin;
  }
  :root {
    --fullscreen_fontSize: 7vw;
    --fullscreenEventWidth: 95vw;
    --fullscreenEventAlign: center;
  }
}
@media screen and (min-width: 601px) {
  html {
    font-size: 2vmin;
  }
  :root {
    --fullscreen_fontSize: 6vw;
    --fullscreenEventWidth: 90vw;
    --fullscreenEventAlign: center;
  }
}
/* sm */
@media screen and (min-width: 768px) {
  html {
    font-size: 1.7vmin;
  }
  :root {
    --fullscreen_fontSize: 4vw;
    --fullscreenEventWidth: 85vw;
    --fullscreenEventAlign: center;
  }
}
/* md */
@media screen and (min-width: 992px) {
  html {
    font-size: 1.9vmin;
  }
  :root {
    --fullscreen_fontSize: 3vw;
    --fullscreenEventWidth: 66vw;
    --fullscreenEventAlign: left;
  }
}
/* lg */
@media screen and (min-width: 1500px) {
  html {
    font-size: 2vmin;
  }
  :root {
    --fullscreen_fontSize: 2vw;
    --fullscreenEventWidth: 66vw;
    --fullscreenEventAlign: left;
  }
}
/* xl */
@media screen and (min-width: 1800px) {
  html {
    font-size: 1.7vmin;
  }
  :root {
    --fullscreen_fontSize: 2vw;
    --fullscreenEventWidth: 50vw;
    --fullscreenEventAlign: left;
  }
}
body {
  font: 100% "Roboto Mono", Futura, Helvetica, sans-serif;
  font-size: 2vmin;
  font-weight: 375;
  margin: 0;
  cursor: default;
}

/* type */
.scalingFontFS {
  font-size: var(--fullscreen_fontSize) !important;
  line-height: 1.3em !important;
}

.link {
  cursor: pointer;
  text-decoration: none;
}

.link:hover {
  text-decoration: none;
}

.text-align-left {
  text-align: left !important;
}

.text-align-center {
  text-align: center !important;
}

.text-align-right {
  text-align: right !important;
}

.center {
  text-align: center;
  align-self: center;
  justify-self: center;
}

/* generic */
.width-100 {
  width: 100%;
}

.flex-1 {
  flex: 1;
}

.d-flex {
  display: flex;
}

/* custom */
.container {
  margin: auto;
  max-width: 100vw;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
}

.fullscreenRoot {
  position: fixed;
  overflow: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fullscreenEvent {
  max-width: var(--fullscreenEventWidth);
  text-align: var(--fullscreenEventAlign);
}
.fullscreenEvent ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  overflow: hidden;
  text-align: var(--fullscreenEventAlign);
}
.fullscreenEvent li {
  float: left;
}

/*# sourceMappingURL=main.css.map */
