body{
    background-color: #c5887b;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Nova Square';
}
 svg {
    width: 400px;
    height: 400px;
  }

  text {
    fill:#083144 ;
    font-size: 1.69rem;
    transition: transform 0.3s ease, fill 0.3s ease; 
  }
text:hover { 
    fill: #105a7c;
  }
  .rotating {
    transform-origin: 50% 50%;
    animation: rotate 15s linear infinite;
  }

  @keyframes rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  a {
    display: block;
  }