/*start*
*
*button 1
*
*start*/

.view {
    margin: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    position: relative;
    width: 170px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    font-size: 16px;
    font-weight: 900;
    color: var(--vermilion);
    background-color: #ffffff;
    border-left: transparent 4px solid;
    border-right: transparent 4px solid;
    line-height: 1.5;
    border-radius: 0px 25px 25px;
    -webkit-box-shadow: 0 0 6px rgba(227, 31, 24, 1);
    box-shadow: 0 0 6px rgba(227, 31, 24, 1);
    transition: all 0.5s ease-in-out;
}

.btn:hover {
    border-left: var(--vermilion) 4px solid;
    border-right: var(--vermilion) 4px solid;
}

.btn img {
    padding: 0 4px;
    height: 40px;
    width: auto;
}

@media only screen and (max-width:768px) {
    .btn {
        font-size: 14px;
        padding: 4px;
    }
}


/*end*
*
* button 1
*
*end*/