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

body{
  width:100vw;
  height:100vh;
  background:#DDFFF7;
  font-family: Arial, sans-serif;
  overflow:hidden;
}


.top-bar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:50px;
  background:#007991;
}
.back{
  position:absolute;
  left:20px;
  top:50%;
  transform:translateY(-50%);
  width:15px;      
  height:auto;
}
.back:hover {
  opacity: 0.7;
}

.home{
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  font-size:22px;
  width: 35px;
}


.scene{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:500px;
  height:500px;
}

.center-circle{
  width:500px;
  height:500px;
  object-fit:contain;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  transition:transform .3s ease;
}



.text-ring{
  position: absolute;
  top: 50%;
  left: 50%;

  width: 650px;
  height: 650px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  letter-spacing: 1.5px;
  animation: spin 20s linear infinite;
  transform: translate(-50%, -50%) rotate(-90deg);
   font-family: "Instrument+Serif";
   fill: #007991
   
}



.text-ring:hover {
  animation-play-state: paused;
  cursor: pointer;
}


@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(270deg);
  }
}

a,
button,
.center-circle,
.text-ring,
body,
svg * {
  cursor: url("img/brownbmouse.png"), auto;
}
.sound{
  position:fixed;
  top:12px;
  right:75px;
  width:29px;
  cursor:pointer;
  z-index:999;
}
