/* @import url('htpps://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900'); */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.container-btn a {
    position: relative;
    width: 100%;
    height: 2em;
    /* display: inline-block; */
    background: #fff;

    border-radius: 7px;
}

.container-btn a:before,
.container-btn a:after {
    content: '';
    position: absolute;
    inset: 0;
    transition: 1s;
    background: #f00;
}

.container-btn a:nth-child(1):before,
.container-btn a:nth-child(1):after {
    background: linear-gradient(45deg, #00ccff, #fcfcfd, #d400d4)
}

.container-btn a:nth-child(2):before,
.container-btn a:nth-child(2):after {
    background: linear-gradient(45deg, #ff0101, #ffffff, #1aff22);
}

.container-btn a:hover:before {
    inset: -4px;
}

.container-btn a:hover:after {
    inset: -4px;
    filter: blur(10px);
}

.container-btn a span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: linear-gradient(#1b5577, #d0d2da, #1e7a73);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
    color: #000000;
    border: 1px solid #01e00c;
    overflow: hidden;
    font-weight: 700;
}

.container-btn a span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.075);
    transform: skew(25deg)
}

.img-fluid {
    width: 100px;
    height: auto;
    ;
}

.container-logo {
    width: 100%;
    justify-content: center;
    display: flex;
}