button{
  padding: 0.75rem 1.5rem;
  font-size: 1.5rem;
  appearance: none;
  border: 0;
  background: 0;
  position: relative;
  color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  font-family: inherit;
  font-weight: 500;

  cursor: pointer;
}
button:after{
  content: '';
  position: absolute;
  inset:0;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,1);
  border-radius: inherit;
  mix-blend-mode: overlay;
}
button iframe{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1.2) rotate(15deg);
  opacity: 0.25;
  filter: blur(5px);
  transition: all 0.5s ease-in-out;
}
button span{
  position: relative;
  z-index: 1;
  opacity: 0.75;
  color: white;
  transition: all 0.5s ease-in-out;
  text-decoration: none;
}
button:hover iframe{
  transform: translate(-50%,-50%) scale(0.6);
  opacity: 1;
  filter: blur(0);
}
button:hover span{
  opacity: 1;
}
html, body{
  height: 100%;
  width: 100%;
  background: black;
  font-size: 24px;
  font-family: system-ui, sans-serif;
  overflow: hidden;
}
body{
  display: flex;
  align-items: center;
  justify-content: center; 
}
