body {
  position: relative;
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0);
  overflow: hidden;
}
main{
  position: fixed;
  display: flex;
  top: 0;
  height: 100vh;
}

canvas{
  width: 100%;
  height: 100%;
  margin: auto;
}
body .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  width: 500px;
  border: 20px solid white;
  background: #373a6d;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 2;
}
body .container .starsWrapper {
  width: 100%;
  height: 100%;
}
body .container .ray {
  position: absolute;
  top: 80px;
  left: 150px;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  box-shadow: 0px 0px 20px 20px rgba(190, 238, 247, 0.1);
  background: rgba(190, 238, 247, 0.1);
  overflow: hidden;
  z-index: 3;
  animation: float ease-in-out 30s infinite;
}
body .container .bookWrapper {
  position: absolute;
  bottom: 0;
  z-index: 1;
}
body .container .bookWrapper svg {
  width: 250px;
  height: 250px;
}
.hh{	
  color: white;
  font-size: 5rem;
  z-index: 99;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}
body a {
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  position: absolute;
  left: calc(50% - 96px);
  bottom: 0;
  font-style: italic;
  font-size: 12px;
  color: #212121;
  background-color: white;
  padding: 10px 20px;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}