body {
    background: url("../img/pattern_7.webp") top center/300px repeat;
    font: 100% "Poppins", sans-serif;
    color: #717171;
    margin: 0;
    overflow-x: hidden;
    text-decoration: none
    }
    
.logo{

    position: relative;
    width: 390px;
    height: 100PX;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 30px;
    /* -webkit-border-radius: 50%; */
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    /* border-radius: 50%; */
    background: url(../img/logo2.jpg) center no-repeat;
    background-size: 70%;
}
.text {
    float: left;
    line-height: 44px;
    padding-left: 7px;
}


.content {
    
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 20px;
    word-wrap: break-word;
}


.buttons{
-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 20px;
    word-wrap: break-word;
        margin-top: 20px;
    margin-bottom: 0;
        width: 100%;
}
.button{
    
    margin: 15px auto;
    height: 44px;
    max-width: 600px;
    -webkit-flex: 3 0 auto;
    -ms-flex: 3 0 auto;
    flex: 3 0 auto;
    width: calc(100% - 54px - 20px* 2 - 20px);
    padding: 5px 8px;
    position: relative;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    color: #fff;
    font-family: "Nunito", sans-serif;
    background: linear-gradient(90.71deg, #FFA41D 26.04%, #FF6F36 76.04%, #FF2F54 100%);
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
    animation: pop 2s linear infinite;
}
.logo2 img{height: 46px;}
.logo2{
float:left;
}
.preview-share-icon{
float:right;
color: white;
}
a {
    display: block;
    width: 100%;
    height: 100%;
    color: white;
}
@keyframes pop {
    0% {
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }

    20% {
        -webkit-transform: scale(1.07,1.07);
        transform: scale(1.07,1.07);
    }

    50% {
        -webkit-transform: scale(1,1);
        transform: scale(1,1)
    }
}