body {
	margin:0;
	padding:0;
}
#wrapper {
	width:100%;
	height:auto;
	position:relative;
	background-image: url('https://images.unsplash.com/photo-1516813147935-a2b3e7160e49?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=8bf50be0e7d797085e3476e9b9156281&auto=format&fit=crop&w=750&q=80');
	background-position: 0% 50%;
	background-color:black;
	background-size:cover;
}
.btn:focus {outline:0;}
.btn {
			    text-align: center;
				    cursor: pointer;
				    background-color:transparent;
				    border:unset;
    }
				    .btn-two {
					        color: #FFF;
						    transition: all 0.5s;
						        position: relative; 
						}
						.btn-two span {
							    z-index: 2; 
							        display: block;
								    position: absolute;
								        width: 100%;
									    height: 100%;   
								    }
								    .btn-two::before {
									        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.2);
														    background-color: rgba(255,255,255,0.1);
													    }
													    .btn-two::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.2);
																			    background-color: rgba(255,255,255,0.1);
																		    }
																		    .btn-two:hover::before {
																			      transform: rotate(-45deg);
																			        background-color: rgba(255,255,255,0);
																			}
																			.btn-two:hover::after {
																				  transform: rotate(45deg);
																				    background-color: rgba(255,255,255,0);
																			    }
