body{
  height:100%;
  
}
body{
  text-align:center;
}
body:before{
  
  height:100%;
  display:inline-block;
  vertical-align:middle;

}
button{
  background: oklch(0.43 0.09 166.24 / 0.91) ;
  color:#fff;
  border:none;
  position:relative;
  height:60px;
  font-size:1.6em;
  padding:0 2em;
  cursor:pointer;
  transition:800ms ease all;
  outline:none;
  nav-down: 80px;
  margin: 50px auto 0; /*espacio entre el boton y los circulos rellenados verdes */
}
button:hover{
  background:#fff;
  color:oklch(0.43 0.09 166.24 / 0.91) ;
}
button:before,button:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:2px;
  width:0;
  background: oklch(0.43 0.09 166.24 / 0.91);
  transition:400ms ease all;
}
button:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
button:hover:before,button:hover:after{
  width:100%;
  transition:800ms ease all;
}
