html, body {
    background-color: black;
    max-height: 100%;
    max-width: 100%;
    margin:0;
    user-select: none;
}

h1 {
    color: white;
    font-size: 5rem;
    font-family: "Space Mono", monospace;
    text-align: center;
}
h2 {
    font-family: "Space Mono", monospace;

}

audio {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    color: transparent;
    border-radius: 5px;
  }
  

  audio::-webkit-media-controls-enclosure {
    background-color: gray;
  }
  
  
#square {
    height: 200px;
    aspect-ratio: 2;
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(to bottom, #00b2f3, #e104f5);
    left: 50%;
    right: 50%;
    translate: -50% -50%;
    animation: rotate 10s infinite;
  }

  #databox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 10%;
    position: absolute;
    top: 50%;
    color: white;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  

#databox a {
    display: block;
    margin-top: 10px;
    color: white;
    font-size: 24px;
    width: fit-content;
  }
  
  #databox a:hover {
    color: #00a6ff;
  }


  #blur {
    height: 100%;
    width: 100%;
    position: absolute;
    backdrop-filter: blur(200px);
  }
  
  @keyframes rotate {
    from {
        rotate: 0deg;
    }
    50% {
        scale: 1 1.5;
    }
    to {
        rotate: 360deg;
    }
  }

  @media only screen and (max-width: 768px) {
    h1 {
      font-size: 3rem;
    }
  
    #databox {
      width: 50%;
      font-size: 18px;
    }
  
    #databox a {
      font-size: 18px;
      margin-left: 30%;
    }
      #blur {
        height: 100%;
        width: 100%;
        position: absolute;
        backdrop-filter: blur(200px);
      }
  }
  