#button1 {
    margin-top: 2%;
    margin-left: 40%;
    width: 140px;
    padding: 12px 10px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-style: none;
    background-color: rgb(46 38 40);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

#button2 {
    margin-top: 0.5%;
    margin-left: 40%;
    width: 140px;
    padding: 12px 10px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-style: none;
    background-color: rgb(46 38 40);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

#button3 {
    margin-top: 0.5%;
    margin-left: 40%;
    width: 140px;
    padding: 12px 10px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-style: none;
    background-color: rgb(46 38 40);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

#button1:hover {
    cursor: pointer;
    transition: all 0.5s ease-out;
    background-color: #ebe0e0;
    color: #181926;
}

#button2:hover {
    cursor: pointer;
    transition: all 0.5s ease-out;
    background-color: #ebe0e0;
    color: #181926;
}

#button3:hover {
    cursor: pointer;
    transition: all 0.5s ease-out;
    background-color: #ebe0e0;
    color: #181926;
    .paypal-icon {
        filter: invert(0%)
    }
}

a {
    text-decoration: double
}

span {
    color: #FF637C;
}


.paypal-icon {
    width: 20%;
    background: transparent;
    filter: invert(90%) sepia(10%) saturate(70%) hue-rotate(350deg) brightness(100%) contrast(100%);
}

.kofi-icon {
    width: 20%;
    background: transparent
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px 0;
}

.col-1 {
    flex-basis: 40%;
    position: relative;
    margin: 50px;
}

.col-1 h2 {
    font-size: 40px;
    margin-bottom: 2%;
}

.col-1 p {
    font-size: 18px;
}


@media only screen and (max-width:700px) {

    .row {
        flex-direction: column-reverse;
    }

    .col-1 h2 {
        text-align: center;
    }

    .col-1 a button {
        position: relative;
        right: 12%;
    }

}