/* BUTTON STYLING */
button {
    background-color: white;
    font-family: 'Roboto', 'sans-serif';
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--purple);
    padding: 5px 10px;
    min-width: 5rem;
    border-radius: 3px;
    border: 2px solid var(--purple);
    transition: 0.15s;
}

button i {
    margin-right: 7px;
}

button:hover {
    cursor: pointer;
    color: white;
    background-color: var(--purple);
}

button:active {
    transform: scale(1.05);
}