:root {
  color-scheme: light;
  --bg: #0f1117;
  --fg: #ffffff;
  --muted: #898d92;
  --accent: #6ee7ff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: #FFF;
  color: var(--fg);
}

.floating-icon{
    margin: 20px;
  display: block;
  height: 50px;
  background-image:
    url('iso.png'),
    url('iso.png'),
    url('iso.png'),
    url('iso.png'),
    url('iso.png');
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position:
    calc(100% - 0px) 0,
    calc(100% - 70px) 0,
    calc(100% - 140px) 0,
    calc(100% - 210px) 0,
    calc(100% - 280px) 0;
}

.cover {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top:0px; left: 0px;
}

.logo {
  max-width: 600px;
  width: 100%;
  height: auto;
}

.title{
  margin-top: 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-align: center;
  color:#224bc7;
  font-weight: lighter;
  padding-bottom: 30px;
}

.body{
  list-style: none;
  margin-top: 20px;
  color: var(--muted);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}
.body>li{
  margin-bottom: 10px;
}

i{ display:block; margin-right: 5px; line-height: 26px!important; background-color: var(--muted); height: 26px; width: 26px!important;  border-radius: 13px;  color: var(--fg);}


@media (max-width: 600px) {
}
