body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  font-family: 'Rubik', sans-serif;
  background: #000000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
}

.content {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh; /* Add this line */
	flex-direction: column;
}

.wrench {
  font-size: 7em;
  animation: rotate 2s linear infinite;
  display: inline-block;
  margin-bottom: 20px;
  z-index: 3;
  position: relative;
  
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

button.pulse-btn {
  margin-top: 50px;
  background-color: #ffcc15;
  border: none;
  padding: 15px 30px;
  color: white;
  font-size: 18px;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 3;
  cursor: default;
}

button.pulse-btn span {
  position: relative;
  display: inline-block;
  animation: pulse 1.5s infinite;
  z-index: 3;
  cursor: default;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.text-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: transparent;
            z-index: 2;
        }
        h1 {
            position: relative;
            font-size: 5em;
            color: #ffffff;
            z-index: 3;
        }
        a {
            position: relative;
            color: #ffffff;
            text-decoration: none;
            font-size: 2em;
            margin-top: 20px;
            z-index: 3;
        }
        #block-container {
            position: absolute;
            width: 800px; /* Add this line */
            height: 650px; /* Add this line */
            z-index: 1;
        }
		#block {
           background-color: white;
           height: 34vmax;
           aspect-ratio: 1;
           position: absolute;
           left: 50%;
           top: 50%;
           translate: -50% -50%;
           border-radius: 50%;
           background: linear-gradient(45deg, rgb(29, 14, 236), rgb(0, 247, 255));
           animation: rotate 20s infinite;
           opacity: 0.8;
        }

        #blur {
            height: 100%;
            width: 100%;
            position: absolute;
            z-index: 2;
            backdrop-filter: blur(16vmax);
        }