:root {
    --bege: #EFEAD7;
    --verde: #119848;
    --preto: #220F0C;
}

body {
    font-family: 'Baumans', sans-serif;
    background-color: var(--bege);
    color: var(--preto);
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-buttons a {
    background-color: var(--verde);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.floating-buttons a:hover {
    transform: scale(1.1);
}

#apps .btn-dark {
    background-color: var(--preto);
    border-color: var(--preto);
}
