.button {
    text-decoration: none;
    color: var(--colorDefault);
    background: var(--buttonColorDefault);
    padding: 5px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: normal;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
    --colorMain: #ffffff;
        /* Set the color you want for the SVG */
}

.button:hover{
    color: #4daafc;
}

.roundify{
    border-radius: 25px;
}
.glow-button {
    color: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 15px var(--buttonColorGlow);
}