body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f8f8;
  overflow: hidden;
}

.container {
  position: relative;
  width: 500px;
  height: 500px;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.02);
  filter: url("#gooey");
}

.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  background-color: #333;
  border-radius: 50%;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.info {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-family: monospace;
  font-size: 14px;
  color: #888;
}