JSFiddle - React, Tailwind, and code Playground

by luka kupunia

HTML

<button>button</button>

CSS

button {
    width: 200px;
    height: 60px;
    display: flex;
    border-radius: 20px;
    background: darkblue;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 50px auto;
    border: none;
    transition: .6s;
    cursor: pointer;
}
button:active {
    transform: scale(1.1);
}