.main-button {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    background-color: #7209B7;
    padding-left: 20px;
    padding-right: 20px;
    height: 60px;
    line-height: 60px;
    box-shadow: 5px 5px 0px #000;
    margin: 0;
    cursor: pointer;
    transition: transform 250ms cubic-bezier(.25,.1,.11,2.43), background-color 250ms ease-in-out, box-shadow 250ms ease-in-out;;
}

.main-button.-full {
    font-family: 'Fira Code', serif;
    width: 100%;
    border: none;
}

.main-button:hover {
    transform: scale(1.08);
    background-color: #C4C4C4;
    box-shadow: 10px 10px 0px #000;
}

.main-button.-full:hover {
    transform: scale(1.02);
}