﻿body {
   
    text-align: center;
    box-sizing: border-box;
    font-family: "Lato",Sans-serif;
    /*   position:relative; */
}

.box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    
}

.btn1:link,
.btn1:visited {
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    top: 0;
    left: 0;
    padding: 20px 40px;
    border-radius: 100px;
    display: inline-block;
    transition: all .5s;
}

.btn1-white {
    background: #fff;
    color: #000;
}

.btn1:hover {
    box-shadow: 0px 10px 10px rgba(0,0,0,0.2);
    transform: translateY(-3px);
    
}

.btn1:active {
    box-shadow: 0px 5px 10px rgba(0,0,0,0.2) transform:translateY(-1px);
}

.btn1-bottom-animation-1 {
    animation: comeFromBottom 1s ease-out .8s;
}

.btn1::after {
    content: "";
    text-decoration: none;
    text-transform: uppercase;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 100px;
    display: inline-block;
    z-index: -1;
    transition: all .5s;
}

.btn1-white::after {
    background: #fff;
}

.btn1-animation-1:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

@keyframes comeFromBottom {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.btncss {
    text-align: center;
    font-family: "Lato", Sans-serif;
    background: #fff;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    top: 0;
    left: 0;
    max-height:40px;
    border-radius: 100px;
    display: inline-block;
    transition: all .5s;
}
.btnboyut {
    width: 50px;
    height: 30px;
}

