.buttonClass {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

a.button {
    width: auto;
    height: 56px;
    padding: 10px;
    border-radius: 4px;
    border: 3px solid #FF3E00;
    text-decoration: none;
    color: #FF3E00;
    font-weight: bold;
    transition: ease-in-out .4s;
    text-align: start;
}

a.button:hover {
    border: 2px solid white;
    background-color: #FF3E00;
    color: white;
    text-shadow: 0 0 4px black;
    box-shadow: 0 0 4px white;
}