body {
    margin: 0
}

a {
    background-color: transparent
}

a:active {
    outline: 0
}

.paste {
    position: fixed;
    top: 0;
    width: 100%;
}

.paste-img {
    width: 100%;
    height: 100%;
}

.column {
    width: 100%;
}

.column-img {
    width: 100%;
}

.overlay {
    margin-top: -10px;
    background-color: #212121;
    padding: 30px 10px;
}

.overlay-img {
    height: auto;
    max-width: 100%;
    margin-bottom: 20px;
}

.button {
    font-family: "Work Sans", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    fill: #000;
    color: #000;
    background-color: #dbff00;
    border-style: solid;
    border-width: 2px;
    border-color: #dbff00;
    border-radius: 35px;
    text-align: center;
    padding: 20px 0;
 animation: glow 2s ease-in-out infinite alternate;
}
.wrap{
            padding-top: 50px;
        padding-bottom: 50px;
        text-align: center;
        color: #1a6c7a;
     

}
.box{
    position: fixed;
    bottom: 30px;
    width: 90%;
    margin-left: 5%;
       font-size: 12px !important;
     
}
@keyframes glow {
    0% {
        box-shadow: 0px 0px 0px 0px rgba(81, 73, 255, 1);
    }

    100% {
        box-shadow: 0px 0px 20px 5px #dbff00;
    }
   
}