/* HEADER */
:root {
    --header-height: 110px;
    --section-margin: 50px;
    --accent-1: #465645;
    --accent-2: #586D57;
    --accent-3: #7E977D;
}

/* MISC */

.btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 5px 15px;
    color: white;
    background: linear-gradient(#5D715B, #465645);
    box-shadow: black 0 1px 3px;
    font-family: 'Cabin';
    text-decoration: none;
    cursor: pointer; 
}

.btn:hover {
    transition: 0.2s ease;
    text-shadow: black 1px 4px 4px;
}