* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  background-color: #010044;
  font-family: sans-serif;
}

.outer_wrapper{
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.wrapper {
  width: 100%;
  height: 100%;
}

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

.sprite_wrapper {
  /* border: red 1px solid; */
  position: absolute;
  overflow: hidden;
}

.sprite_inner > svg {
  height: 100%;
  width: auto;
}

.sign {
  position: absolute;
  color: white;
  bottom: 10px;
  right: 10px;
  font-size: 10px;
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}