.btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.back {
    display: flex;
    text-decoration: none;
    color: white;    
    border: solid 2px #918776;
    padding: 15px;
    border-radius: 20px;   
    background-color: #b1a58e;
    font-size: 16px;
    width: 200px;
    height: 49px;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cateAbo {
    text-align: center;
    width: 60%;
    margin: 0 auto;
    padding: 1% 0;
}

@media(min-width: 801px){
    .back:hover {
        background-color: #d9cbb0;
    }
}

@media(max-width: 800px){
    .back:active {
        background-color: #d9cbb0;
    }

    .cateAbo {
        width: 90%;
        padding: 2% 0;
    }
}
