.button {
    font-weight: 500;
    font-size: 24px;
    width: 100%;
    height: auto;
    padding: 24px;
    outline: none;
    border: none;
    border-radius: 16px;
    color: #fff;
    background: var(--color-teal);
    transition: all .2s ease;
}

.button:hover {
    background: #0a9980;
}

.button:active {
    background: #097d68;
}