p{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
   

}
h1{
    position: relative;
    color: red;
    text-align: center;
    font-size: 50px;


}
body{
    background: #e0e5ec;
}

.frame{
    width: 90%;
    margin: 40px auto;
    text-align: center;
}

button{
    margin: 20px;
}
.custom-btn{
    width: 130px;
    height: 80px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    background: transparent;
    cursor:pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255,255,25,.5),
    7px 7px 20px 0px rgba(0,0,0,.1),
    4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;


}

.btn-v {
    width: 200px;
    height: 40px;
    line-height: 42px;
    padding: 0;
    border: none;
    background: rgb(255,27,0);
  background: linear-gradient(0deg, rgb(173, 18, 1) 0%, rgba(251,75,2,1) 100%);
  }
  .btn-v:hover {
    color: #f0094a;
    background: transparent;
     box-shadow:none;
  }
  .btn-v:before,
  .btn-v:after{
    content:'';
    position:absolute;
    top:0;
    right:0;
    height:2px;
    width:0;
    background: #f0094a;
    box-shadow:
     -1px -1px 5px 0px #fff,
     7px 7px 20px 0px #0003,
     4px 4px 5px 0px #0002;
    transition:400ms ease all;
    
  }
  .btn-v:after{
    right:inherit;
    top:inherit;
    left:0;
    bottom:0;
  }
  .btn-v:hover:before,
  .btn-v:hover:after{
    width:100%;
    transition:800ms ease all;
  }
  