html, body {
    background-color: black;
    max-height: 100%;
    max-width: 100%;
    margin:0;
    user-select: none;
    cursor: none;
}

h1 {
    color: white;
    font-size: 5rem;
    font-family: "Space Mono", monospace;
    text-align: center;
}
h2 {
    font-family: "Space Mono", monospace;

}  
  
  #square {
    height: 200px;
    aspect-ratio: 2;
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(to bottom, #f30000, #f30000);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 5s 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 {
    50% {
        scale: 1 1.5;
    }
  }

  @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);
      }
  }
