body{
    background-color:#000;
}
container{
    display:flex;
    justify-content:space-around;
}
.box{
    width:150px;
    height:100px;
    align-content:center;
    text-align:center;
}
.button{
    background-color:#fff;
    color:#000;
    margin:5%;
}
#button1{
    border-radius:25px;
    padding:10px;
    text-align:center;
    width:50px;
}

#button1:hover{
    box-shadow:0 0 25px #fff;
}
#button2{
    width:75px;
    height:50px;
	transition: all 0.5s;
	position: relative;	
	
}
#button2 span {
	z-index: 2;	
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;	
}
#button2::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: all 0.5s;
	border: 1px solid rgba(255,255,255,0.2);
	background-color: rgba(255,255,255,0.1);
}
#button2::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	transition: all 0.5s;
	border: 1px solid rgba(255,255,255,0.5);
	background-color: rgba(255,255,255,0.5);
}
#button2:hover::before {
  transform: rotate(-45deg);
  background-color: rgba(255,255,255,0);
}
#button2:hover::after {
  transform: rotate(45deg);
  background-color: rgba(255,255,255,.3);
}


#button3{
    width:100px;
    height:50px;
    color:#0044FF;
    padding:25px;
    transition: all 0.3s ease;
    border-radius:5px;
}

#button3:hover{
    border:2px solid #fff;
    width:300px;
    height:250px;
    box-shadow:0 0 50px #fff;
}