* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.conten{
  position: relative;
  display: grid;
  justify-content: center;
  width: 100%;
  gap: 40px;
}
.conten button{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: white;
  background: black;
  padding: 1em 2em;
  border: none;
  border-radius: .6rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.conten button span:not(:nth-child(6)){
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 40px;
  width: 40px;
  background: rgb(131, 58, 180);
  background: linear-gradient(90deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
  border-radius: 50%;
  transition: .6s ease;
}
.conten button span:nth-child(6){
  position: relative;
}
.conten button span:nth-child(1){
  transform: translate(-3.3em, -5em);
}
.conten button span:nth-child(2){
  transform: translate(-6em, 2.3em);
}
.conten button span:nth-child(3){
  transform: translate(-.2em, 1.8em);
}
.conten button span:nth-child(4){
  transform: translate(3.5em, 2.4em);
}
.conten button span:nth-child(5){
  transform: translate(3.5em, -4.8em);
}
.conten button:hover span:not(:nth-child(6)){
  transform: translate(-50%, -50%) scale(4);
  transition: 1.5s ease;
}
.ini{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
    background: url(neg.jpg);
}
.ini h1{
  color: brown;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}