@import "https://fonts.googleapis.com/css?family=Nunito:300,400,700,800&display=swap";
body{
	font-family:nunito,sans-serif;
	font-weight:400;
	font-style:normal;
	color:#232323;
	overflow:hidden
	background-color:#fff;
	height: 100vh;

   }
.my_btn{
	display: inline-block;
    font-weight: 700;
    font-family: nunito,sans-serif;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 2px solid #f14836;
    padding: 0 60px;
    margin-right: 20px;
    font-size: 16px;
    height: 55px;
    line-height: 51px;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    -ms-transition: all .4s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
    background-color: #f14836;
}

.my_btn:hover{
	background-color: rgba(241,72,54,.3);
    color: #f14836;
    border-color: #f14836;
    text-decoration: none;
}

.delay-1 {
animation-delay: .15s;
}
.delay-2 {
animation-delay: .30s;
}
.delay-3 {
animation-delay: .45s;
}